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