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