]> git.immae.eu Git - github/wallabag/wallabag.git/blame - composer.json
Hash backup codes in the database using `password_hash`
[github/wallabag/wallabag.git] / composer.json
CommitLineData
7d2eb7a7 1{
44f1fef0
NL
2 "name": "wallabag/wallabag",
3 "type": "project",
4 "description": "open source self hostable read-it-later web application",
9666fb70
TC
5 "keywords": [
6 "read-it-later",
7 "read it later"
8 ],
44f1fef0
NL
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"
2a2903ce
NL
22 },
23 {
24 "name": "Jérémy Benoist",
4793ee65 25 "homepage": "http://www.j0k3r.net",
2a2903ce 26 "role": "Developer"
44f1fef0
NL
27 }
28 ],
29 "support": {
30 "email": "hello@wallabag.org",
31 "issues": "https://github.com/wallabag/wallabag/issues"
32 },
7d2eb7a7 33 "require": {
a6b242a1 34 "php": ">=7.1.3",
0a7e6959 35 "ext-pcre": "*",
7af794e5 36 "ext-dom": "*",
0a7e6959
TC
37 "ext-curl": "*",
38 "ext-gd": "*",
39 "ext-session": "*",
7af794e5 40 "ext-ctype": "*",
0a7e6959
TC
41 "ext-hash": "*",
42 "ext-simplexml": "*",
43 "ext-json": "*",
44 "ext-mbstring": "*",
45 "ext-xml": "*",
46 "ext-iconv": "*",
0a7e6959 47 "ext-tokenizer": "*",
7af794e5 48 "ext-pdo": "*",
115de64e 49 "symfony/symfony": "3.4.*",
8f2038e5
JB
50 "doctrine/orm": "^2.6",
51 "doctrine/doctrine-bundle": "^1.9",
52 "doctrine/doctrine-cache-bundle": "^1.3",
53 "twig/extensions": "^1.5",
54 "symfony/swiftmailer-bundle": "^3.2",
55 "symfony/monolog-bundle": "^3.1",
56 "sensio/distribution-bundle": "^5.0",
57 "sensio/framework-extra-bundle": "^5.2",
58 "incenteev/composer-parameter-handler": "^2.1",
b495929c 59 "nelmio/cors-bundle": "~1.5",
f1c3f68e 60 "friendsofsymfony/rest-bundle": "~2.1",
f40c88eb 61 "jms/serializer-bundle": "~2.2",
b495929c 62 "nelmio/api-doc-bundle": "^2.13.2",
daacffef 63 "mgargano/simplehtmldom": "~1.5",
6fc95673 64 "wallabag/tcpdf": "^6.2.26",
f40c88eb 65 "simplepie/simplepie": "~1.5",
b495929c
KD
66 "willdurand/hateoas-bundle": "~1.3",
67 "liip/theme-bundle": "^1.4.6",
8f2038e5 68 "lexik/form-filter-bundle": "^5.0",
4368a271 69 "j0k3r/graby": "^1.0",
ad77c345 70 "friendsofsymfony/user-bundle": "2.0.*",
8f2038e5 71 "friendsofsymfony/oauth-server-bundle": "^1.5",
a0a4ce31 72 "stof/doctrine-extensions-bundle": "^1.2",
a6b242a1 73 "scheb/two-factor-bundle": "^3.0",
6fc95673 74 "grandt/phpepub": "dev-master",
8f2038e5 75 "wallabag/php-mobi": "~1.0",
177c5510 76 "kphoen/rulerz-bundle": "~0.13",
19738973 77 "guzzlehttp/guzzle": "^5.3.1",
b495929c 78 "doctrine/doctrine-migrations-bundle": "^1.3",
9a8a1bdf 79 "craue/config-bundle": "dev-utf8mb4",
fbbda941 80 "mnapoli/piwik-twig-extension": "^1.0",
9666fb70 81 "ocramius/proxy-manager": "^2.1.1",
8f2038e5 82 "white-october/pagerfanta-bundle": "^1.1",
b495929c 83 "php-amqplib/rabbitmq-bundle": "^1.14",
9394e809 84 "predis/predis": "v1.1.x-dev",
c8ac32cf 85 "javibravo/simpleue": "^2.0",
8f2038e5
JB
86 "symfony/dom-crawler": "^3.4",
87 "friendsofsymfony/jsrouting-bundle": "^2.2",
8bb381e7 88 "bdunogier/guzzle-site-authenticator": "^1.0.0",
c6608783 89 "defuse/php-encryption": "^2.1",
dfd0a7bc
JB
90 "html2text/html2text": "^4.1",
91 "pragmarx/recovery": "^0.1.0"
f3052b45
NL
92 },
93 "require-dev": {
115de64e 94 "doctrine/doctrine-fixtures-bundle": "~3.0",
31e33fc4 95 "sensio/generator-bundle": "^3.0",
a5e9a98a 96 "symfony/phpunit-bridge": "^4.2",
8f2038e5
JB
97 "friendsofphp/php-cs-fixer": "~2.13",
98 "m6web/redis-mock": "^4.1",
1e0d8ad7
JB
99 "dama/doctrine-test-bundle": "^5.0",
100 "phpstan/phpstan": "^0.11.0",
101 "phpstan/phpstan-phpunit": "^0.11.0",
102 "phpstan/phpstan-symfony": "^0.11.0",
103 "phpstan/phpstan-doctrine": "^0.11.0"
f3052b45 104 },
19875ef0 105 "scripts": {
516022d6 106 "post-cmd": [
0bb5669c 107 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
93fd4692
NL
108 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
109 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
74216c7c 110 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
1b1cb553 111 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
59507c5b 112 ],
516022d6
JB
113 "post-install-cmd": [
114 "@post-cmd"
115 ],
116 "post-update-cmd": [
117 "@post-cmd"
19875ef0
NL
118 ]
119 },
93fd4692
NL
120 "extra": {
121 "symfony-app-dir": "app",
31e33fc4
JB
122 "symfony-bin-dir": "bin",
123 "symfony-var-dir": "var",
93fd4692 124 "symfony-web-dir": "web",
31e33fc4 125 "symfony-tests-dir": "tests",
f972af3f 126 "symfony-assets-install": "relative",
93fd4692 127 "incenteev-parameters": {
0bb5669c 128 "file": "app/config/parameters.yml"
93fd4692
NL
129 }
130 },
6ad93dff 131 "autoload": {
6fc95673
JB
132 "psr-4": {
133 "Wallabag\\": "src/Wallabag/"
134 },
135 "classmap": [
136 "app/AppKernel.php",
137 "app/AppCache.php"
138 ]
6ad93dff 139 },
23634d5d 140 "autoload-dev": {
6fc95673
JB
141 "psr-4": {
142 "Tests\\": "tests/"
143 },
9666fb70
TC
144 "files": [
145 "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
146 ]
23634d5d 147 },
f3052b45 148 "config": {
c396a505
JB
149 "bin-dir": "bin",
150 "platform": {
a6b242a1 151 "php": "7.1.3"
c396a505 152 }
daacffef
J
153 },
154 "minimum-stability": "dev",
6fc95673
JB
155 "prefer-stable": true,
156 "repositories": [
157 {
158 "type": "vcs",
159 "url": "https://github.com/Daniel-KM/PHPePub",
160 "comment": "The most up-to-date PHPePub as of now"
9a8a1bdf
JB
161 },
162 {
163 "type": "vcs",
164 "url": "https://github.com/wallabag/CraueConfigBundle",
165 "comment": "To handle utf8mb4 field size"
6fc95673
JB
166 }
167 ]
daacffef 168}