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