aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-02-24 14:47:35 +0100
committerJeremy Benoist <j0k3r@users.noreply.github.com>2016-02-24 14:47:35 +0100
commitf83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9 (patch)
treec8352e3e576ba849a6ea01940b64861bc97bd8ff /composer.json
parentd7cc16c8b585f6a600cd309a9bb5630794fcf9aa (diff)
parent7af794e525fd0d7504d0a1c41cc747909df66033 (diff)
downloadwallabag-f83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9.tar.gz
wallabag-f83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9.tar.zst
wallabag-f83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9.zip
Merge pull request #1716 from wallabag/v2-enhance-requirements-installation
Fix #1603: Enhance requirements in InstallCommand
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json16
1 files changed, 15 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index fe6880aa..a1a7ebb4 100644
--- a/composer.json
+++ b/composer.json
@@ -29,6 +29,20 @@
29 }, 29 },
30 "require": { 30 "require": {
31 "php": ">=5.5.9", 31 "php": ">=5.5.9",
32 "ext-pcre": "*",
33 "ext-dom": "*",
34 "ext-curl": "*",
35 "ext-gd": "*",
36 "ext-session": "*",
37 "ext-ctype": "*",
38 "ext-hash": "*",
39 "ext-simplexml": "*",
40 "ext-json": "*",
41 "ext-mbstring": "*",
42 "ext-xml": "*",
43 "ext-iconv": "*",
44 "ext-tokenizer": "*",
45 "ext-pdo": "*",
32 "symfony/symfony": "3.0.*", 46 "symfony/symfony": "3.0.*",
33 "doctrine/orm": "^2.5", 47 "doctrine/orm": "^2.5",
34 "doctrine/doctrine-bundle": "^1.6", 48 "doctrine/doctrine-bundle": "^1.6",
@@ -111,7 +125,7 @@
111 } 125 }
112 }, 126 },
113 "autoload": { 127 "autoload": {
114 "psr-4": { "": "src/" }, 128 "psr-4": { "Wallabag\\": "src/Wallabag/" },
115 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ] 129 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
116 }, 130 },
117 "config": { 131 "config": {