]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Merge pull request #1341 from wallabag/v2-capistrano
[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 "role": "Developer"
23 }
24 ],
25 "support": {
26 "email": "hello@wallabag.org",
27 "issues": "https://github.com/wallabag/wallabag/issues"
28 },
29 "repositories": [
30 {
31 "type": "vcs",
32 "url": "https://github.com/wallabag/PHP-Flash-Messages"
33 },
34 {
35 "type": "vcs",
36 "url": "https://github.com/wallabag/kriss_php5"
37 },
38 {
39 "type": "vcs",
40 "url": "https://github.com/wallabag/pagination"
41 },
42 {
43 "type": "vcs",
44 "url": "https://github.com/wallabag/PHPePub"
45 },
46 {
47 "type": "vcs",
48 "url": "https://github.com/wallabag/php-readability"
49 },
50 {
51 "type": "vcs",
52 "url": "https://github.com/wallabag/phpMobi"
53 },
54 {
55 "type": "vcs",
56 "url": "https://github.com/wallabag/Fivefilters_Libraries"
57 }
58 ],
59 "require": {
60 "php": ">=5.3.3",
61 "symfony/symfony": "~2.7.0",
62 "doctrine/orm": "~2.2,>=2.2.3",
63 "doctrine/doctrine-bundle": "~1.2",
64 "twig/extensions": "~1.0",
65 "symfony/assetic-bundle": "~2.3",
66 "symfony/swiftmailer-bundle": "~2.3",
67 "symfony/monolog-bundle": "~2.4",
68 "sensio/distribution-bundle": "~3.0.12",
69 "sensio/framework-extra-bundle": "~3.0",
70 "incenteev/composer-parameter-handler": "~2.0",
71 "nelmio/cors-bundle": "~1.4.0",
72 "umpirsky/twig-gettext-extractor": "~1.1.5",
73 "friendsofsymfony/rest-bundle": "~1.4",
74 "jms/serializer-bundle": "~0.13",
75 "nelmio/api-doc-bundle": "~2.7",
76 "ezyang/htmlpurifier": "~4.6",
77 "mgargano/simplehtmldom": "~1.5",
78 "tecnick.com/tcpdf": "~6.2",
79 "simplepie/simplepie": "~1.3.1",
80 "willdurand/hateoas-bundle": "~0.5.0",
81 "htmlawed/htmlawed": "~1.1.19",
82 "liip/theme-bundle": "~1.1.3",
83 "wallabag/PHP-Flash-Messages": "dev-master",
84 "wallabag/kriss_php5": "dev-master",
85 "wallabag/pagination": "dev-master",
86 "wallabag/PHPePub": "dev-master",
87 "wallabag/php-readability": "dev-master",
88 "wallabag/phpMobi": "dev-master",
89 "wallabag/Fivefilters_Libraries": "dev-master",
90 "pagerfanta/pagerfanta": "~1.0.3",
91 "lexik/form-filter-bundle": "~4.0"
92 },
93 "require-dev": {
94 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
95 "sensio/generator-bundle": "~2.5",
96 "phpunit/phpunit": "~4.4"
97 },
98 "scripts": {
99 "post-install-cmd": [
100 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
101 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
102 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
103 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
104 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
105 ],
106 "post-update-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 },
114 "extra": {
115 "symfony-app-dir": "app",
116 "symfony-web-dir": "web",
117 "symfony-assets-install": "relative",
118 "incenteev-parameters": {
119 "file": "app/config/parameters.yml"
120 }
121 },
122 "autoload": {
123 "psr-0": { "": "src/" }
124 },
125 "config": {
126 "bin-dir": "bin"
127 },
128 "minimum-stability": "dev",
129 "prefer-stable": true
130 }