]> git.mxchange.org Git - friendica.git/blob - composer.json
[Composer] Add required extensions
[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                 "paragonie/random_compat": "^2.0",
38                 "pear/Text_LanguageDetect": "1.*",
39                 "seld/cli-prompt": "^1.0",
40                 "smarty/smarty": "^3.1",
41                 "fxp/composer-asset-plugin": "~1.3",
42                 "bower-asset/base64": "^1.0",
43                 "bower-asset/Chart-js": "^2.7",
44                 "bower-asset/perfect-scrollbar": "^0.6",
45                 "bower-asset/vue": "^2.5",
46                 "npm-asset/jquery": "^2.0",
47                 "npm-asset/jquery-colorbox": "^1.6",
48                 "npm-asset/jquery-datetimepicker": "^2.4.0",
49                 "npm-asset/jgrowl": "^1.4",
50                 "npm-asset/fullcalendar": "^3.0.1",
51                 "npm-asset/cropperjs": "1.2.2",
52                 "npm-asset/imagesloaded": "4.1.4",
53                 "monolog/monolog": "^1.24"
54         },
55         "repositories": [
56                 {
57                         "type": "vcs",
58                         "url": "https://git.friendi.ca/friendica/php-json-ld"
59                 }
60         ],
61         "autoload": {
62                 "psr-4": {
63                         "Friendica\\": "src/",
64                         "Friendica\\Test\\": "tests/",
65                         "Friendica\\Addon\\": "addon/"
66                 },
67                 "psr-0": {
68                         "": "library/"
69                 },
70                 "files": [
71                         "include/conversation.php",
72                         "include/dba.php",
73                         "include/enotify.php",
74                         "include/items.php",
75                         "include/text.php",
76                         "boot.php"
77                 ]
78         },
79         "config": {
80                 "autoloader-suffix": "Friendica",
81                 "optimize-autoloader": true,
82                 "preferred-install": "dist",
83                 "fxp-asset": {
84                         "installer-paths": {
85                                 "npm-asset-library": "view/asset",
86                                 "bower-asset-library": "view/asset"
87                         }
88                 }
89         },
90         "archive": {
91                 "exclude": [
92                         "log", "cache", "/photo", "/proxy"
93                 ]
94         },
95         "require-dev": {
96                 "phpunit/dbunit": "^2.0",
97                 "phpdocumentor/reflection-docblock": "^3.0.2",
98                 "phpunit/php-token-stream": "^1.4.2",
99                 "mikey179/vfsStream": "^1.6",
100                 "mockery/mockery": "^1.2",
101                 "johnkary/phpunit-speedtrap": "1.1"
102         },
103         "scripts": {
104                 "test": "phpunit"
105         }
106 }