NB-NO translation update THX friendOFica
[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-curl": "*",
18                 "ext-dom": "*",
19                 "ext-json": "*",
20                 "ext-openssl": "*",
21                 "ext-xml": "*",
22                 "asika/simple-console": "^1.0",
23                 "divineomega/password_exposed": "^2.4",
24                 "ezyang/htmlpurifier": "~4.7.0",
25                 "friendica/json-ld": "^1.0",
26                 "league/html-to-markdown": "~4.8.0",
27                 "lightopenid/lightopenid": "dev-master",
28                 "michelf/php-markdown": "^1.7",
29                 "mobiledetect/mobiledetectlib": "2.8.*",
30                 "paragonie/random_compat": "^2.0",
31                 "pear/Text_LanguageDetect": "1.*",
32                 "seld/cli-prompt": "^1.0",
33                 "smarty/smarty": "^3.1",
34                 "fxp/composer-asset-plugin": "~1.3",
35                 "bower-asset/base64": "^1.0",
36                 "bower-asset/Chart-js": "^2.7",
37                 "bower-asset/perfect-scrollbar": "^0.6",
38                 "bower-asset/vue": "^2.5",
39                 "npm-asset/jquery": "^2.0",
40                 "npm-asset/jquery-colorbox": "^1.6",
41                 "npm-asset/jquery-datetimepicker": "^2.4.0",
42                 "npm-asset/jgrowl": "^1.4",
43                 "npm-asset/fullcalendar": "^3.0.1",
44                 "npm-asset/cropperjs": "1.2.2",
45                 "npm-asset/imagesloaded": "4.1.4"
46         },
47         "repositories": [
48                 {
49                         "type": "vcs",
50                         "url": "https://git.friendi.ca/friendica/php-json-ld"
51                 }
52         ],
53         "autoload": {
54                 "psr-4": {
55                         "Friendica\\": "src/",
56                         "Friendica\\Test\\": "tests/"
57                 },
58                 "psr-0": {
59                         "": "library/"
60                 },
61                 "files": [
62                         "include/conversation.php",
63                         "include/dba.php",
64                         "include/enotify.php",
65                         "include/items.php",
66                         "include/text.php",
67                         "boot.php"
68                 ]
69         },
70         "config": {
71                 "autoloader-suffix": "Friendica",
72                 "optimize-autoloader": true,
73                 "preferred-install": "dist",
74                 "fxp-asset": {
75                         "installer-paths": {
76                                 "npm-asset-library": "view/asset",
77                                 "bower-asset-library": "view/asset"
78                         }
79                 }
80         },
81         "archive": {
82                 "exclude": [
83                         "log", "cache", "/photo", "/proxy"
84                 ]
85         },
86         "require-dev": {
87                 "phpunit/dbunit": "^2.0",
88                 "phpdocumentor/reflection-docblock": "^3.0.2",
89                 "phpunit/php-token-stream": "^1.4.2",
90                 "mikey179/vfsStream": "^1.6",
91                 "mockery/mockery": "^1.2",
92                 "johnkary/phpunit-speedtrap": "1.1"
93         },
94         "scripts": {
95                 "test": "phpunit"
96         }
97 }