]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Add ldap to composer
[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 "symfony/symfony": "~3.3.13",
47 "doctrine/orm": "^2.5.12",
48 "doctrine/doctrine-bundle": "^1.8.0",
49 "doctrine/doctrine-cache-bundle": "^1.3.2",
50 "twig/extensions": "^1.5.1",
51 "symfony/swiftmailer-bundle": "^2.6.7",
52 "symfony/monolog-bundle": "^3.1.2",
53 "sensio/distribution-bundle": "^5.0.21",
54 "sensio/framework-extra-bundle": "^3.0.28",
55 "incenteev/composer-parameter-handler": "^2.1.2",
56 "nelmio/cors-bundle": "~1.5",
57 "friendsofsymfony/rest-bundle": "~2.1",
58 "jms/serializer-bundle": "~2.2",
59 "nelmio/api-doc-bundle": "^2.13.2",
60 "mgargano/simplehtmldom": "~1.5",
61 "wallabag/tcpdf": "^6.2.15",
62 "simplepie/simplepie": "~1.5",
63 "willdurand/hateoas-bundle": "~1.3",
64 "liip/theme-bundle": "^1.4.6",
65 "lexik/form-filter-bundle": "^5.0.4",
66 "j0k3r/graby": "^1.0",
67 "friendsofsymfony/user-bundle": "2.0.*",
68 "friendsofsymfony/oauth-server-bundle": "^1.5.2",
69 "stof/doctrine-extensions-bundle": "^1.2",
70 "scheb/two-factor-bundle": "^2.14.0",
71 "grandt/phpepub": "^4.0.7",
72 "wallabag/php-mobi": "~1.0.0",
73 "kphoen/rulerz-bundle": "~0.13",
74 "guzzlehttp/guzzle": "^5.3.1",
75 "doctrine/doctrine-migrations-bundle": "^1.3",
76 "paragonie/random_compat": "^2.0.11",
77 "craue/config-bundle": "~2.0",
78 "mnapoli/piwik-twig-extension": "^1.0",
79 "ocramius/proxy-manager": "^1.0.2",
80 "white-october/pagerfanta-bundle": "^1.1.0",
81 "php-amqplib/rabbitmq-bundle": "^1.14",
82 "predis/predis": "^1.1.1",
83 "javibravo/simpleue": "^2.0",
84 "symfony/dom-crawler": "^3.3.13",
85 "friendsofsymfony/jsrouting-bundle": "^1.6.3",
86 "bdunogier/guzzle-site-authenticator": "^1.0.0",
87 "defuse/php-encryption": "^2.1",
88 "html2text/html2text": "^4.1",
89 "fr3d/ldap-bundle": "^3.0"
90 },
91 "suggest": {
92 "fr3d/ldap-bundle": "If you want to authenticate via LDAP"
93 },
94 "require-dev": {
95 "doctrine/doctrine-fixtures-bundle": "~2.2",
96 "doctrine/data-fixtures": "~1.1",
97 "sensio/generator-bundle": "^3.0",
98 "symfony/phpunit-bridge": "3.4.x-dev",
99 "friendsofphp/php-cs-fixer": "~2.0",
100 "m6web/redis-mock": "^2.0",
101 "dama/doctrine-test-bundle": "^4.0"
102 },
103 "scripts": {
104 "post-cmd": [
105 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
106 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
107 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
108 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
109 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
110 ],
111 "post-install-cmd": [
112 "@post-cmd"
113 ],
114 "post-update-cmd": [
115 "@post-cmd"
116 ]
117 },
118 "extra": {
119 "symfony-app-dir": "app",
120 "symfony-bin-dir": "bin",
121 "symfony-var-dir": "var",
122 "symfony-web-dir": "web",
123 "symfony-tests-dir": "tests",
124 "symfony-assets-install": "relative",
125 "incenteev-parameters": {
126 "file": "app/config/parameters.yml"
127 }
128 },
129 "autoload": {
130 "psr-4": { "Wallabag\\": "src/Wallabag/" },
131 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
132 },
133 "autoload-dev": {
134 "psr-4": { "Tests\\": "tests/" }
135 },
136 "config": {
137 "bin-dir": "bin",
138 "platform": {
139 "php": "5.6.0"
140 }
141 },
142 "minimum-stability": "dev",
143 "prefer-stable": true
144 }