aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-10-24 21:02:35 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-11-28 22:04:54 +0100
commit6fc95673df5349d682eb6ca6185f894eb711d13a (patch)
treeb825799c92eb8f41b4f55273a6c959125699eea9 /composer.json
parent0f159f8fc1dea68552dbfa845fa9a24a95953018 (diff)
downloadwallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.gz
wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.zst
wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.zip
Cleanup
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json29
1 files changed, 22 insertions, 7 deletions
diff --git a/composer.json b/composer.json
index 4f234861..da2bd3b9 100644
--- a/composer.json
+++ b/composer.json
@@ -58,7 +58,7 @@
58 "jms/serializer-bundle": "~2.2", 58 "jms/serializer-bundle": "~2.2",
59 "nelmio/api-doc-bundle": "^2.13.2", 59 "nelmio/api-doc-bundle": "^2.13.2",
60 "mgargano/simplehtmldom": "~1.5", 60 "mgargano/simplehtmldom": "~1.5",
61 "wallabag/tcpdf": "^6.2.15", 61 "wallabag/tcpdf": "^6.2.26",
62 "simplepie/simplepie": "~1.5", 62 "simplepie/simplepie": "~1.5",
63 "willdurand/hateoas-bundle": "~1.3", 63 "willdurand/hateoas-bundle": "~1.3",
64 "liip/theme-bundle": "^1.4.6", 64 "liip/theme-bundle": "^1.4.6",
@@ -68,7 +68,7 @@
68 "friendsofsymfony/oauth-server-bundle": "^1.5.2", 68 "friendsofsymfony/oauth-server-bundle": "^1.5.2",
69 "stof/doctrine-extensions-bundle": "^1.2", 69 "stof/doctrine-extensions-bundle": "^1.2",
70 "scheb/two-factor-bundle": "^2.14.0", 70 "scheb/two-factor-bundle": "^2.14.0",
71 "grandt/phpepub": "^4.0.7", 71 "grandt/phpepub": "dev-master",
72 "wallabag/php-mobi": "~1.0.0", 72 "wallabag/php-mobi": "~1.0.0",
73 "kphoen/rulerz-bundle": "~0.13", 73 "kphoen/rulerz-bundle": "~0.13",
74 "guzzlehttp/guzzle": "^5.3.1", 74 "guzzlehttp/guzzle": "^5.3.1",
@@ -122,18 +122,33 @@
122 } 122 }
123 }, 123 },
124 "autoload": { 124 "autoload": {
125 "psr-4": { "Wallabag\\": "src/Wallabag/" }, 125 "psr-4": {
126 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ] 126 "Wallabag\\": "src/Wallabag/"
127 },
128 "classmap": [
129 "app/AppKernel.php",
130 "app/AppCache.php"
131 ]
127 }, 132 },
128 "autoload-dev": { 133 "autoload-dev": {
129 "psr-4": { "Tests\\": "tests/" } 134 "psr-4": {
135 "Tests\\": "tests/"
136 },
137 "files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
130 }, 138 },
131 "config": { 139 "config": {
132 "bin-dir": "bin", 140 "bin-dir": "bin",
133 "platform": { 141 "platform": {
134 "php": "7.1.0" 142 "php": "7.1"
135 } 143 }
136 }, 144 },
137 "minimum-stability": "dev", 145 "minimum-stability": "dev",
138 "prefer-stable": true 146 "prefer-stable": true,
147 "repositories": [
148 {
149 "type": "vcs",
150 "url": "https://github.com/Daniel-KM/PHPePub",
151 "comment": "The most up-to-date PHPePub as of now"
152 }
153 ]
139} 154}