]> git.immae.eu Git - github/wallabag/wallabag.git/blame - composer.json
Merge pull request #1422 from wallabag/v2-ebook
[github/wallabag/wallabag.git] / composer.json
CommitLineData
7d2eb7a7 1{
44f1fef0
NL
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"
2a2903ce
NL
19 },
20 {
21 "name": "Jérémy Benoist",
4793ee65 22 "homepage": "http://www.j0k3r.net",
2a2903ce 23 "role": "Developer"
44f1fef0
NL
24 }
25 ],
26 "support": {
27 "email": "hello@wallabag.org",
28 "issues": "https://github.com/wallabag/wallabag/issues"
29 },
7d2eb7a7 30 "require": {
93fd4692 31 "php": ">=5.3.3",
75e9d1df 32 "symfony/symfony": "~2.7.0",
fad31615 33 "doctrine/orm": "~2.3",
53cf5106 34 "doctrine/doctrine-bundle": "1.5.2",
93fd4692
NL
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",
75e9d1df 42 "nelmio/cors-bundle": "~1.4.0",
569f8d68
NL
43 "friendsofsymfony/rest-bundle": "~1.4",
44 "jms/serializer-bundle": "~0.13",
45 "nelmio/api-doc-bundle": "~2.7",
daacffef
J
46 "ezyang/htmlpurifier": "~4.6",
47 "mgargano/simplehtmldom": "~1.5",
34c2cc7a 48 "tecnickcom/tcpdf": "~6.2",
daacffef 49 "simplepie/simplepie": "~1.3.1",
75e9d1df
JB
50 "willdurand/hateoas-bundle": "~0.5.0",
51 "htmlawed/htmlawed": "~1.1.19",
52 "liip/theme-bundle": "~1.1.3",
26864574 53 "pagerfanta/pagerfanta": "~1.0.3",
fad31615 54 "lexik/form-filter-bundle": "~4.0",
a1691859 55 "j0k3r/graby": "~1.0",
fcb1fba5 56 "friendsofsymfony/user-bundle": "dev-master",
2db616b5 57 "friendsofsymfony/oauth-server-bundle": "^1.4@dev",
03690d13
TC
58 "scheb/two-factor-bundle": "~1.4",
59 "grandt/phpepub": "~4.0",
add597ba 60 "wallabag/php-mobi": "~1.0.0"
f3052b45
NL
61 },
62 "require-dev": {
75e9d1df 63 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
daacffef 64 "sensio/generator-bundle": "~2.5",
872384b0
JB
65 "phpunit/phpunit": "~4.4",
66 "symfony/phpunit-bridge": "~2.7.0"
f3052b45 67 },
03690d13
TC
68 "repositories": [
69 {
70 "type": "vcs",
71 "url": "https://github.com/wallabag/phpMobi"
72 }
73 ],
19875ef0
NL
74 "scripts": {
75 "post-install-cmd": [
93fd4692
NL
76 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
77 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
78 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
79 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
c5772d11 80 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
93fd4692
NL
81 ],
82 "post-update-cmd": [
83 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
84 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
85 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
86 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
2e45e7be 87 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
19875ef0
NL
88 ]
89 },
93fd4692
NL
90 "extra": {
91 "symfony-app-dir": "app",
92 "symfony-web-dir": "web",
93 "symfony-assets-install": "relative",
94 "incenteev-parameters": {
95 "file": "app/config/parameters.yml"
93fd4692
NL
96 }
97 },
6ad93dff 98 "autoload": {
c5772d11 99 "psr-0": { "": "src/" }
6ad93dff 100 },
f3052b45
NL
101 "config": {
102 "bin-dir": "bin"
daacffef
J
103 },
104 "minimum-stability": "dev",
105 "prefer-stable": true
106}