]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Merge pull request #1702 from wallabag/v2-piwik
[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.5.9",
32 "symfony/symfony": "3.0.*",
33 "doctrine/orm": "^2.5",
34 "doctrine/doctrine-bundle": "^1.6",
35 "doctrine/doctrine-cache-bundle": "^1.2",
36 "twig/extensions": "~1.0",
37 "symfony/assetic-bundle": "~2.3",
38 "symfony/swiftmailer-bundle": "^2.3",
39 "symfony/monolog-bundle": "^2.8",
40 "sensio/distribution-bundle": "^5.0",
41 "sensio/framework-extra-bundle": "^3.0.2",
42 "incenteev/composer-parameter-handler": "^2.0",
43 "nelmio/cors-bundle": "~1.4.0",
44 "friendsofsymfony/rest-bundle": "~1.4",
45 "jms/serializer-bundle": "~1.0",
46 "nelmio/api-doc-bundle": "~2.7",
47 "ezyang/htmlpurifier": "~4.6",
48 "mgargano/simplehtmldom": "~1.5",
49 "tecnickcom/tcpdf": "~6.2",
50 "simplepie/simplepie": "~1.3.1",
51 "willdurand/hateoas-bundle": "~1.0",
52 "htmlawed/htmlawed": "~1.1.19",
53 "liip/theme-bundle": "~1.1",
54 "pagerfanta/pagerfanta": "~1.0.3",
55 "lexik/form-filter-bundle": "~5.0",
56 "j0k3r/graby": "~1.0",
57 "friendsofsymfony/user-bundle": "~2.0@dev",
58 "friendsofsymfony/oauth-server-bundle": "^1.5",
59 "stof/doctrine-extensions-bundle": "^1.2@dev",
60 "scheb/two-factor-bundle": "~2.0",
61 "grandt/phpepub": "~4.0",
62 "wallabag/php-mobi": "~1.0.0",
63 "kphoen/rulerz-bundle": "~0.10",
64 "guzzlehttp/guzzle": "^5.2.0",
65 "doctrine/doctrine-migrations-bundle": "^1.0",
66 "paragonie/random_compat": "~1.0",
67 "craue/config-bundle": "~1.4",
68 "mnapoli/piwik-twig-extension": "^1.0"
69 },
70 "require-dev": {
71 "doctrine/doctrine-fixtures-bundle": "~2.2",
72 "sensio/generator-bundle": "^3.0",
73 "phpunit/phpunit": "~4.4",
74 "symfony/phpunit-bridge": "^2.7"
75 },
76 "scripts": {
77 "build-parameters": [
78 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
79 ],
80 "post-cmd": [
81 "@build-parameters",
82 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
83 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
84 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
85 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
86 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
87 ],
88 "post-install-cmd": [
89 "@post-cmd"
90 ],
91 "post-update-cmd": [
92 "@post-cmd"
93 ]
94 },
95 "extra": {
96 "symfony-app-dir": "app",
97 "symfony-bin-dir": "bin",
98 "symfony-var-dir": "var",
99 "symfony-web-dir": "web",
100 "symfony-tests-dir": "tests",
101 "symfony-assets-install": "relative",
102 "incenteev-parameters": {
103 "file": "app/config/parameters.yml",
104 "env-map": {
105 "mailer_host": "WALLABAG_MAILER_HOST",
106 "mailer_user": "WALLABAG_MAILER_USER",
107 "mailer_password": "WALLABAG_MAILER_PASSWORD",
108 "secret": "WALLABAG_SECRET"
109 }
110 }
111 },
112 "autoload": {
113 "psr-4": { "": "src/" },
114 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
115 },
116 "config": {
117 "bin-dir": "bin"
118 },
119 "minimum-stability": "dev",
120 "prefer-stable": true
121 }