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