]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[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": ["read-it-later","read it later"],
6 "homepage": "https://github.com/wallabag/wallabag",
7 "license": "MIT",
8 "authors": [
9 {
10 "name": "Nicolas Lœuillet",
11 "email": "nicolas@loeuillet.org",
12 "homepage": "http://www.cdetc.fr",
13 "role": "Developer"
14 },
15 {
16 "name": "Thomas Citharel",
17 "homepage": "http://tcit.fr",
18 "role": "Developer"
19 },
20 {
21 "name": "Jérémy Benoist",
22 "homepage": "http://www.j0k3r.net",
23 "role": "Developer"
24 }
25 ],
26 "support": {
27 "email": "hello@wallabag.org",
28 "issues": "https://github.com/wallabag/wallabag/issues"
29 },
30 "require": {
31 "php": ">=5.6.0",
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": "*",
46 "ext-tidy": "*",
47 "symfony/symfony": "~3.3.13",
48 "doctrine/orm": "^2.5.12",
49 "doctrine/doctrine-bundle": "^1.8.0",
50 "doctrine/doctrine-cache-bundle": "^1.3.2",
51 "twig/extensions": "^1.5.1",
52 "symfony/swiftmailer-bundle": "^2.6.7",
53 "symfony/monolog-bundle": "^3.1.2",
54 "sensio/distribution-bundle": "^5.0.21",
55 "sensio/framework-extra-bundle": "^3.0.28",
56 "incenteev/composer-parameter-handler": "^2.1.2",
57 "nelmio/cors-bundle": "~1.5",
58 "friendsofsymfony/rest-bundle": "~2.1",
59 "jms/serializer-bundle": "~2.2",
60 "nelmio/api-doc-bundle": "^2.13.2",
61 "mgargano/simplehtmldom": "~1.5",
62 "wallabag/tcpdf": "^6.2.15",
63 "simplepie/simplepie": "~1.5",
64 "willdurand/hateoas-bundle": "~1.3",
65 "liip/theme-bundle": "^1.4.6",
66 "lexik/form-filter-bundle": "^5.0.4",
67 "j0k3r/graby": "^1.0",
68 "friendsofsymfony/user-bundle": "2.0.*",
69 "friendsofsymfony/oauth-server-bundle": "^1.5.2",
70 "stof/doctrine-extensions-bundle": "^1.2",
71 "scheb/two-factor-bundle": "^2.14.0",
72 "grandt/phpepub": "^4.0.7",
73 "wallabag/php-mobi": "~1.0.0",
74 "kphoen/rulerz-bundle": "~0.13",
75 "guzzlehttp/guzzle": "^5.3.1",
76 "doctrine/doctrine-migrations-bundle": "^1.3",
77 "paragonie/random_compat": "^2.0.11",
78 "craue/config-bundle": "~2.0",
79 "mnapoli/piwik-twig-extension": "^1.0",
80 "ocramius/proxy-manager": "^1.0.2",
81 "white-october/pagerfanta-bundle": "^1.1.0",
82 "php-amqplib/rabbitmq-bundle": "^1.14",
83 "predis/predis": "^1.1.1",
84 "javibravo/simpleue": "^2.0",
85 "symfony/dom-crawler": "^3.3.13",
86 "friendsofsymfony/jsrouting-bundle": "^1.6.3",
87 "bdunogier/guzzle-site-authenticator": "^1.0.0",
88 "defuse/php-encryption": "^2.1",
89 "html2text/html2text": "^4.1"
90 },
91 "require-dev": {
92 "doctrine/doctrine-fixtures-bundle": "~2.2",
93 "doctrine/data-fixtures": "~1.1",
94 "sensio/generator-bundle": "^3.0",
95 "symfony/phpunit-bridge": "^4.2",
96 "friendsofphp/php-cs-fixer": "~2.0",
97 "m6web/redis-mock": "^2.0",
98 "dama/doctrine-test-bundle": "^4.0"
99 },
100 "scripts": {
101 "post-cmd": [
102 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
103 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
104 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
105 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
106 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
107 ],
108 "post-install-cmd": [
109 "@post-cmd"
110 ],
111 "post-update-cmd": [
112 "@post-cmd"
113 ]
114 },
115 "extra": {
116 "symfony-app-dir": "app",
117 "symfony-bin-dir": "bin",
118 "symfony-var-dir": "var",
119 "symfony-web-dir": "web",
120 "symfony-tests-dir": "tests",
121 "symfony-assets-install": "relative",
122 "incenteev-parameters": {
123 "file": "app/config/parameters.yml"
124 }
125 },
126 "autoload": {
127 "psr-4": { "Wallabag\\": "src/Wallabag/" },
128 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
129 },
130 "autoload-dev": {
131 "psr-4": { "Tests\\": "tests/" }
132 },
133 "config": {
134 "bin-dir": "bin",
135 "platform": {
136 "php": "5.6.0"
137 }
138 },
139 "minimum-stability": "dev",
140 "prefer-stable": true
141 }