]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Bump scheb/two-factor-bundle from 3.21.0 to 4.4.0
[github/wallabag/wallabag.git] / composer.json
1 {
2 "name": "wallabag/wallabag",
3 "type": "project",
4 "description": "open source self hostable read-it-later web application",
5 "keywords": [
6 "read-it-later",
7 "read it later"
8 ],
9 "homepage": "https://github.com/wallabag/wallabag",
10 "license": "MIT",
11 "authors": [
12 {
13 "name": "Nicolas Lœuillet",
14 "email": "nicolas@loeuillet.org",
15 "homepage": "http://www.cdetc.fr",
16 "role": "Developer"
17 },
18 {
19 "name": "Thomas Citharel",
20 "homepage": "http://tcit.fr",
21 "role": "Developer"
22 },
23 {
24 "name": "Jérémy Benoist",
25 "homepage": "http://www.j0k3r.net",
26 "role": "Developer"
27 }
28 ],
29 "support": {
30 "email": "hello@wallabag.org",
31 "issues": "https://github.com/wallabag/wallabag/issues"
32 },
33 "require": {
34 "php": ">=7.1.3",
35 "ext-pcre": "*",
36 "ext-dom": "*",
37 "ext-curl": "*",
38 "ext-gd": "*",
39 "ext-session": "*",
40 "ext-ctype": "*",
41 "ext-hash": "*",
42 "ext-simplexml": "*",
43 "ext-json": "*",
44 "ext-mbstring": "*",
45 "ext-xml": "*",
46 "ext-iconv": "*",
47 "ext-tokenizer": "*",
48 "ext-pdo": "*",
49 "ext-tidy": "*",
50 "symfony/symfony": "3.4.*",
51 "doctrine/orm": "^2.6",
52 "doctrine/doctrine-bundle": "^1.9",
53 "doctrine/doctrine-cache-bundle": "^1.3",
54 "twig/extensions": "^1.5",
55 "symfony/swiftmailer-bundle": "^3.2",
56 "symfony/monolog-bundle": "^3.1",
57 "sensio/distribution-bundle": "^5.0",
58 "sensio/framework-extra-bundle": "^5.2",
59 "incenteev/composer-parameter-handler": "^2.1",
60 "nelmio/cors-bundle": "~1.5",
61 "friendsofsymfony/rest-bundle": "~2.1",
62 "jms/serializer-bundle": "~2.2",
63 "nelmio/api-doc-bundle": "^2.13.2",
64 "mgargano/simplehtmldom": "~1.5",
65 "wallabag/tcpdf": "^6.2.26",
66 "willdurand/hateoas-bundle": "~1.3",
67 "liip/theme-bundle": "^1.4.6",
68 "lexik/form-filter-bundle": "^5.0.4",
69 "j0k3r/graby": "^2.0",
70 "php-http/guzzle5-adapter": "^2.0",
71 "friendsofsymfony/user-bundle": "2.0.*",
72 "friendsofsymfony/oauth-server-bundle": "^1.5",
73 "stof/doctrine-extensions-bundle": "^1.2",
74 "scheb/two-factor-bundle": "^4.4",
75 "grandt/phpepub": "dev-master",
76 "wallabag/php-mobi": "~1.0",
77 "kphoen/rulerz-bundle": "~0.13",
78 "guzzlehttp/guzzle": "^5.3.1",
79 "doctrine/doctrine-migrations-bundle": "^1.3",
80 "craue/config-bundle": "dev-utf8mb4",
81 "mnapoli/piwik-twig-extension": "^2.0",
82 "ocramius/proxy-manager": "^2.1.1",
83 "white-october/pagerfanta-bundle": "^1.1",
84 "php-amqplib/rabbitmq-bundle": "^1.14",
85 "predis/predis": "v1.1.x-dev",
86 "javibravo/simpleue": "^2.0",
87 "symfony/dom-crawler": "^3.4",
88 "friendsofsymfony/jsrouting-bundle": "^2.2",
89 "bdunogier/guzzle-site-authenticator": "^1.0.0",
90 "defuse/php-encryption": "^2.1",
91 "html2text/html2text": "^4.1",
92 "pragmarx/recovery": "^0.1.0",
93 "php-http/httplug-bundle": "^1.14",
94 "sentry/sentry-symfony": "^3.0"
95 },
96 "require-dev": {
97 "doctrine/doctrine-fixtures-bundle": "~3.0",
98 "sensio/generator-bundle": "^3.0",
99 "symfony/phpunit-bridge": "^4.2",
100 "friendsofphp/php-cs-fixer": "~2.13",
101 "m6web/redis-mock": "^4.1",
102 "dama/doctrine-test-bundle": "^5.0",
103 "phpstan/phpstan": "^0.11.0",
104 "phpstan/phpstan-phpunit": "^0.11.0",
105 "phpstan/phpstan-symfony": "^0.11.0",
106 "phpstan/phpstan-doctrine": "^0.11.0",
107 "php-http/mock-client": "^1.0",
108 "guzzlehttp/psr7": "^1.0"
109 },
110 "suggest": {
111 "ext-imagick": "To keep GIF animation when downloading image is enabled"
112 },
113 "scripts": {
114 "post-cmd": [
115 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
116 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
117 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
118 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
119 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
120 ],
121 "post-install-cmd": [
122 "@post-cmd"
123 ],
124 "post-update-cmd": [
125 "@post-cmd"
126 ]
127 },
128 "extra": {
129 "symfony-app-dir": "app",
130 "symfony-bin-dir": "bin",
131 "symfony-var-dir": "var",
132 "symfony-web-dir": "web",
133 "symfony-tests-dir": "tests",
134 "symfony-assets-install": "relative",
135 "incenteev-parameters": {
136 "file": "app/config/parameters.yml"
137 }
138 },
139 "autoload": {
140 "psr-4": {
141 "Wallabag\\": "src/Wallabag/"
142 },
143 "classmap": [
144 "app/AppKernel.php",
145 "app/AppCache.php"
146 ]
147 },
148 "autoload-dev": {
149 "psr-4": {
150 "Tests\\": "tests/"
151 },
152 "files": [
153 "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
154 ]
155 },
156 "config": {
157 "bin-dir": "bin",
158 "platform": {
159 "php": "7.1.3"
160 }
161 },
162 "minimum-stability": "dev",
163 "prefer-stable": true,
164 "repositories": [
165 {
166 "type": "vcs",
167 "url": "https://github.com/Daniel-KM/PHPePub",
168 "comment": "The most up-to-date PHPePub as of now"
169 },
170 {
171 "type": "vcs",
172 "url": "https://github.com/wallabag/CraueConfigBundle",
173 "comment": "To handle utf8mb4 field size"
174 }
175 ]
176 }