]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Add backup codes
[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 "symfony/symfony": "3.4.*",
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",
59 "nelmio/cors-bundle": "~1.5",
60 "friendsofsymfony/rest-bundle": "~2.1",
61 "jms/serializer-bundle": "~2.2",
62 "nelmio/api-doc-bundle": "^2.13.2",
63 "mgargano/simplehtmldom": "~1.5",
64 "wallabag/tcpdf": "^6.2.26",
65 "simplepie/simplepie": "~1.5",
66 "willdurand/hateoas-bundle": "~1.3",
67 "liip/theme-bundle": "^1.4.6",
68 "lexik/form-filter-bundle": "^5.0",
69 "j0k3r/graby": "^1.0",
70 "friendsofsymfony/user-bundle": "2.0.*",
71 "friendsofsymfony/oauth-server-bundle": "^1.5",
72 "stof/doctrine-extensions-bundle": "^1.2",
73 "scheb/two-factor-bundle": "^3.0",
74 "grandt/phpepub": "dev-master",
75 "wallabag/php-mobi": "~1.0",
76 "kphoen/rulerz-bundle": "~0.13",
77 "guzzlehttp/guzzle": "^5.3.1",
78 "doctrine/doctrine-migrations-bundle": "^1.3",
79 "craue/config-bundle": "dev-utf8mb4",
80 "mnapoli/piwik-twig-extension": "^1.0",
81 "ocramius/proxy-manager": "^2.1.1",
82 "white-october/pagerfanta-bundle": "^1.1",
83 "php-amqplib/rabbitmq-bundle": "^1.14",
84 "predis/predis": "v1.1.x-dev",
85 "javibravo/simpleue": "^2.0",
86 "symfony/dom-crawler": "^3.4",
87 "friendsofsymfony/jsrouting-bundle": "^2.2",
88 "bdunogier/guzzle-site-authenticator": "^1.0.0",
89 "defuse/php-encryption": "^2.1",
90 "html2text/html2text": "^4.1",
91 "pragmarx/recovery": "^0.1.0"
92 },
93 "require-dev": {
94 "doctrine/doctrine-fixtures-bundle": "~3.0",
95 "sensio/generator-bundle": "^3.0",
96 "symfony/phpunit-bridge": "^4.2",
97 "friendsofphp/php-cs-fixer": "~2.13",
98 "m6web/redis-mock": "^4.1",
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"
104 },
105 "scripts": {
106 "post-cmd": [
107 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
108 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
109 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
110 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
111 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
112 ],
113 "post-install-cmd": [
114 "@post-cmd"
115 ],
116 "post-update-cmd": [
117 "@post-cmd"
118 ]
119 },
120 "extra": {
121 "symfony-app-dir": "app",
122 "symfony-bin-dir": "bin",
123 "symfony-var-dir": "var",
124 "symfony-web-dir": "web",
125 "symfony-tests-dir": "tests",
126 "symfony-assets-install": "relative",
127 "incenteev-parameters": {
128 "file": "app/config/parameters.yml"
129 }
130 },
131 "autoload": {
132 "psr-4": {
133 "Wallabag\\": "src/Wallabag/"
134 },
135 "classmap": [
136 "app/AppKernel.php",
137 "app/AppCache.php"
138 ]
139 },
140 "autoload-dev": {
141 "psr-4": {
142 "Tests\\": "tests/"
143 },
144 "files": [
145 "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
146 ]
147 },
148 "config": {
149 "bin-dir": "bin",
150 "platform": {
151 "php": "7.1.3"
152 }
153 },
154 "minimum-stability": "dev",
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"
161 },
162 {
163 "type": "vcs",
164 "url": "https://github.com/wallabag/CraueConfigBundle",
165 "comment": "To handle utf8mb4 field size"
166 }
167 ]
168 }