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