]> git.mxchange.org Git - friendica.git/blob - composer.json
Use DBA::exists() in Photo::exists()
[friendica.git] / composer.json
1 {
2         "name": "friendica/friendica",
3         "description": "A decentralized social network part of The Federation",
4         "type": "project",
5         "keywords": [
6                 "social network",
7                 "dfrn",
8                 "ostatus",
9                 "diaspora"
10         ],
11         "license": "AGPL-3.0+",
12         "support": {
13                 "issues": "https://github.com/friendica/friendica/issues"
14         },
15         "require": {
16                 "php": ">=5.6.1",
17                 "ext-curl": "*",
18                 "ext-dom": "*",
19                 "ext-json": "*",
20                 "ext-openssl": "*",
21                 "ext-xml": "*",
22                 "asika/simple-console": "^1.0",
23                 "divineomega/password_exposed": "^2.4",
24                 "ezyang/htmlpurifier": "~4.7.0",
25                 "friendica/json-ld": "^1.0",
26                 "league/html-to-markdown": "~4.8.0",
27                 "lightopenid/lightopenid": "dev-master",
28                 "michelf/php-markdown": "^1.7",
29                 "mobiledetect/mobiledetectlib": "2.8.*",
30                 "paragonie/random_compat": "^2.0",
31                 "pear/Text_LanguageDetect": "1.*",
32                 "seld/cli-prompt": "^1.0",
33                 "smarty/smarty": "^3.1",
34                 "fxp/composer-asset-plugin": "~1.3",
35                 "bower-asset/base64": "^1.0",
36                 "bower-asset/Chart-js": "^2.7",
37                 "bower-asset/perfect-scrollbar": "^0.6",
38                 "bower-asset/vue": "^2.5",
39                 "npm-asset/jquery": "^2.0",
40                 "npm-asset/jquery-colorbox": "^1.6",
41                 "npm-asset/jquery-datetimepicker": "^2.4.0",
42                 "npm-asset/jgrowl": "^1.4",
43                 "npm-asset/fullcalendar": "^3.0.1",
44                 "npm-asset/cropperjs": "1.2.2",
45                 "npm-asset/imagesloaded": "4.1.4"
46         },
47         "repositories": [
48                 {
49                         "type": "vcs",
50                         "url": "https://git.friendi.ca/friendica/php-json-ld"
51                 }
52         ],
53         "autoload": {
54                 "psr-4": {
55                         "Friendica\\": "src/",
56                         "Friendica\\Test\\": "tests/",
57                         "Friendica\\Addon\\": "addon/"
58                 },
59                 "psr-0": {
60                         "": "library/"
61                 },
62                 "files": [
63                         "include/conversation.php",
64                         "include/dba.php",
65                         "include/enotify.php",
66                         "include/items.php",
67                         "include/text.php",
68                         "boot.php"
69                 ]
70         },
71         "config": {
72                 "autoloader-suffix": "Friendica",
73                 "optimize-autoloader": true,
74                 "preferred-install": "dist",
75                 "fxp-asset": {
76                         "installer-paths": {
77                                 "npm-asset-library": "view/asset",
78                                 "bower-asset-library": "view/asset"
79                         }
80                 }
81         },
82         "archive": {
83                 "exclude": [
84                         "log", "cache", "/photo", "/proxy"
85                 ]
86         },
87         "require-dev": {
88                 "phpunit/dbunit": "^2.0",
89                 "phpdocumentor/reflection-docblock": "^3.0.2",
90                 "phpunit/php-token-stream": "^1.4.2",
91                 "mikey179/vfsStream": "^1.6",
92                 "mockery/mockery": "^1.2",
93                 "johnkary/phpunit-speedtrap": "1.1"
94         },
95         "scripts": {
96                 "test": "phpunit"
97         }
98 }