]> git.mxchange.org Git - friendica.git/blob - composer.json
Merge pull request #7135 from MrPetovan/task/two-factor-authentication
[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": ">=7.0",
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                 "bacon/bacon-qr-code": "^1.0",
31                 "divineomega/password_exposed": "^2.4",
32                 "ezyang/htmlpurifier": "~4.7.0",
33                 "friendica/json-ld": "^1.0",
34                 "league/html-to-markdown": "~4.8.0",
35                 "lightopenid/lightopenid": "dev-master",
36                 "michelf/php-markdown": "^1.7",
37                 "mobiledetect/mobiledetectlib": "2.8.*",
38                 "monolog/monolog": "^1.24",
39                 "nikic/fast-route": "^1.3",
40                 "pear/text_languagedetect": "1.*",
41                 "pragmarx/google2fa": "^5.0",
42                 "pragmarx/recovery": "^0.1.0",
43                 "psr/container": "^1.0",
44                 "seld/cli-prompt": "^1.0",
45                 "smarty/smarty": "^3.1",
46                 "fxp/composer-asset-plugin": "~1.3",
47                 "bower-asset/base64": "^1.0",
48                 "bower-asset/chart-js": "^2.7",
49                 "bower-asset/perfect-scrollbar": "^0.6",
50                 "bower-asset/vue": "^2.5",
51                 "npm-asset/jquery": "^2.0",
52                 "npm-asset/jquery-colorbox": "^1.6",
53                 "npm-asset/jquery-datetimepicker": "^2.4.0",
54                 "npm-asset/jgrowl": "^1.4",
55                 "npm-asset/moment": "^2.20.1",
56                 "npm-asset/fullcalendar": "^3.0.1",
57                 "npm-asset/cropperjs": "1.2.2",
58                 "npm-asset/imagesloaded": "4.1.4",
59                 "pear/console_table": "^1.3"
60         },
61         "repositories": [
62                 {
63                         "type": "vcs",
64                         "url": "https://git.friendi.ca/friendica/php-json-ld"
65                 }
66         ],
67         "autoload": {
68                 "psr-4": {
69                         "Friendica\\": "src/",
70                         "Friendica\\Test\\": "tests/",
71                         "Friendica\\Addon\\": "addon/"
72                 },
73                 "psr-0": {
74                         "": "library/"
75                 },
76                 "files": [
77                         "include/conversation.php",
78                         "include/dba.php",
79                         "include/enotify.php",
80                         "include/items.php",
81                         "include/text.php",
82                         "boot.php"
83                 ]
84         },
85         "config": {
86                 "autoloader-suffix": "Friendica",
87                 "optimize-autoloader": true,
88                 "preferred-install": "dist",
89                 "fxp-asset": {
90                         "installer-paths": {
91                                 "npm-asset-library": "view/asset",
92                                 "bower-asset-library": "view/asset"
93                         }
94                 }
95         },
96         "archive": {
97                 "exclude": [
98                         "log", "cache", "/photo", "/proxy"
99                 ]
100         },
101         "require-dev": {
102                 "phpunit/dbunit": "^2.0",
103                 "phpdocumentor/reflection-docblock": "^3.0.2",
104                 "phpunit/php-token-stream": "^1.4.2",
105                 "mikey179/vfsstream": "^1.6",
106                 "mockery/mockery": "^1.2",
107                 "johnkary/phpunit-speedtrap": "1.1"
108         },
109         "scripts": {
110                 "test": "phpunit"
111         }
112 }