Merge pull request #7266 from MrPetovan/bug/notices
[friendica.git/.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": ">=7.0",
17                 "ext-ctype": "*",
18                 "ext-curl": "*",
19                 "ext-dom": "*",
20                 "ext-fileinfo": "*",
21                 "ext-gd": "*",
22                 "ext-iconv": "*",
23                 "ext-json": "*",
24                 "ext-libxml": "*",
25                 "ext-mbstring": "*",
26                 "ext-openssl": "*",
27                 "ext-simplexml": "*",
28                 "ext-xml": "*",
29                 "asika/simple-console": "^1.0",
30                 "bacon/bacon-qr-code": "^1.0",
31                 "divineomega/password_exposed": "^2.4",
32                 "ezyang/htmlpurifier": "~4.7.0",
33                 "friendica/json-ld": "^1.0",
34                 "league/html-to-markdown": "~4.8.0",
35                 "lightopenid/lightopenid": "dev-master",
36                 "michelf/php-markdown": "^1.7",
37                 "mobiledetect/mobiledetectlib": "2.8.*",
38                 "monolog/monolog": "^1.24",
39                 "nikic/fast-route": "^1.3",
40                 "paragonie/hidden-string": "^1.0",
41                 "pear/text_languagedetect": "1.*",
42                 "pragmarx/google2fa": "^5.0",
43                 "pragmarx/recovery": "^0.1.0",
44                 "psr/container": "^1.0",
45                 "seld/cli-prompt": "^1.0",
46                 "smarty/smarty": "^3.1",
47                 "fxp/composer-asset-plugin": "~1.3",
48                 "bower-asset/base64": "^1.0",
49                 "bower-asset/chart-js": "^2.7",
50                 "bower-asset/dompurify": "^1.0",
51                 "bower-asset/perfect-scrollbar": "^0.6",
52                 "bower-asset/vue": "^2.5",
53                 "npm-asset/jquery": "^2.0",
54                 "npm-asset/jquery-colorbox": "^1.6",
55                 "npm-asset/jquery-datetimepicker": "^2.4.0",
56                 "npm-asset/jgrowl": "^1.4",
57                 "npm-asset/moment": "^2.20.1",
58                 "npm-asset/fullcalendar": "^3.0.1",
59                 "npm-asset/cropperjs": "1.2.2",
60                 "npm-asset/imagesloaded": "4.1.4",
61                 "pear/console_table": "^1.3"
62         },
63         "repositories": [
64                 {
65                         "type": "vcs",
66                         "url": "https://git.friendi.ca/friendica/php-json-ld"
67                 }
68         ],
69         "autoload": {
70                 "psr-4": {
71                         "Friendica\\": "src/",
72                         "Friendica\\Test\\": "tests/",
73                         "Friendica\\Addon\\": "addon/"
74                 },
75                 "psr-0": {
76                         "": "library/"
77                 },
78                 "files": [
79                         "include/conversation.php",
80                         "include/dba.php",
81                         "include/enotify.php",
82                         "include/items.php",
83                         "include/text.php",
84                         "boot.php"
85                 ]
86         },
87         "config": {
88                 "autoloader-suffix": "Friendica",
89                 "optimize-autoloader": true,
90                 "preferred-install": "dist",
91                 "fxp-asset": {
92                         "installer-paths": {
93                                 "npm-asset-library": "view/asset",
94                                 "bower-asset-library": "view/asset"
95                         }
96                 }
97         },
98         "archive": {
99                 "exclude": [
100                         "log", "cache", "/photo", "/proxy"
101                 ]
102         },
103         "require-dev": {
104                 "phpunit/dbunit": "^2.0",
105                 "phpdocumentor/reflection-docblock": "^3.0.2",
106                 "phpunit/php-token-stream": "^1.4.2",
107                 "mikey179/vfsstream": "^1.6",
108                 "mockery/mockery": "^1.2",
109                 "johnkary/phpunit-speedtrap": "1.1"
110         },
111         "scripts": {
112                 "test": "phpunit"
113         }
114 }