]>
Commit | Line | Data |
---|---|---|
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": { |
d4aa1743 | 31 | "php": ">=5.5.0", |
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", |
3c65dfb7 | 58 | "stof/doctrine-extensions-bundle": "^1.2@dev", |
d4aa1743 | 59 | "scheb/two-factor-bundle": "~1.4.0", |
03690d13 | 60 | "grandt/phpepub": "~4.0", |
c3510620 | 61 | "wallabag/php-mobi": "~1.0.0", |
1f4408de | 62 | "kphoen/rulerz-bundle": "~0.10", |
292c1324 NL |
63 | "guzzlehttp/guzzle": "^5.2.0", |
64 | "doctrine/doctrine-migrations-bundle": "^1.0" | |
f3052b45 NL |
65 | }, |
66 | "require-dev": { | |
75e9d1df | 67 | "doctrine/doctrine-fixtures-bundle": "~2.2.0", |
daacffef | 68 | "sensio/generator-bundle": "~2.5", |
872384b0 JB |
69 | "phpunit/phpunit": "~4.4", |
70 | "symfony/phpunit-bridge": "~2.7.0" | |
f3052b45 | 71 | }, |
03690d13 TC |
72 | "repositories": [ |
73 | { | |
74 | "type": "vcs", | |
75 | "url": "https://github.com/wallabag/phpMobi" | |
76 | } | |
77 | ], | |
19875ef0 NL |
78 | "scripts": { |
79 | "post-install-cmd": [ | |
93fd4692 NL |
80 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", |
81 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
82 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
83 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
c5772d11 | 84 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
93fd4692 NL |
85 | ], |
86 | "post-update-cmd": [ | |
87 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | |
88 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
89 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
90 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
2e45e7be | 91 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
59507c5b MB |
92 | ], |
93 | "build-parameters": [ | |
94 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters" | |
19875ef0 NL |
95 | ] |
96 | }, | |
93fd4692 NL |
97 | "extra": { |
98 | "symfony-app-dir": "app", | |
99 | "symfony-web-dir": "web", | |
100 | "symfony-assets-install": "relative", | |
101 | "incenteev-parameters": { | |
59507c5b MB |
102 | "file": "app/config/parameters.yml", |
103 | "env-map": { | |
104 | "mailer_host": "WALLABAG_MAILER_HOST", | |
105 | "mailer_user": "WALLABAG_MAILER_USER", | |
106 | "mailer_password": "WALLABAG_MAILER_PASSWORD", | |
107 | "secret": "WALLABAG_SECRET" | |
108 | } | |
93fd4692 NL |
109 | } |
110 | }, | |
6ad93dff | 111 | "autoload": { |
c5772d11 | 112 | "psr-0": { "": "src/" } |
6ad93dff | 113 | }, |
f3052b45 NL |
114 | "config": { |
115 | "bin-dir": "bin" | |
daacffef J |
116 | }, |
117 | "minimum-stability": "dev", | |
118 | "prefer-stable": true | |
119 | } |