]> git.mxchange.org Git - friendica.git/blob - composer.json
New command "BlockedServers"
[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                 "pear/console_table": "^1.3"
58         },
59         "repositories": [
60                 {
61                         "type": "vcs",
62                         "url": "https://git.friendi.ca/friendica/php-json-ld"
63                 }
64         ],
65         "autoload": {
66                 "psr-4": {
67                         "Friendica\\": "src/",
68                         "Friendica\\Test\\": "tests/",
69                         "Friendica\\Addon\\": "addon/"
70                 },
71                 "psr-0": {
72                         "": "library/"
73                 },
74                 "files": [
75                         "include/conversation.php",
76                         "include/dba.php",
77                         "include/enotify.php",
78                         "include/items.php",
79                         "include/text.php",
80                         "boot.php"
81                 ]
82         },
83         "config": {
84                 "autoloader-suffix": "Friendica",
85                 "optimize-autoloader": true,
86                 "preferred-install": "dist",
87                 "fxp-asset": {
88                         "installer-paths": {
89                                 "npm-asset-library": "view/asset",
90                                 "bower-asset-library": "view/asset"
91                         }
92                 }
93         },
94         "archive": {
95                 "exclude": [
96                         "log", "cache", "/photo", "/proxy"
97                 ]
98         },
99         "require-dev": {
100                 "phpunit/dbunit": "^2.0",
101                 "phpdocumentor/reflection-docblock": "^3.0.2",
102                 "phpunit/php-token-stream": "^1.4.2",
103                 "mikey179/vfsstream": "^1.6",
104                 "mockery/mockery": "^1.2",
105                 "johnkary/phpunit-speedtrap": "1.1"
106         },
107         "scripts": {
108                 "test": "phpunit"
109         }
110 }