]>
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", | |
22 | "role": "Developer" | |
44f1fef0 NL |
23 | } |
24 | ], | |
25 | "support": { | |
26 | "email": "hello@wallabag.org", | |
27 | "issues": "https://github.com/wallabag/wallabag/issues" | |
28 | }, | |
a20f96b7 | 29 | "repositories": [ |
96b2c59c NL |
30 | { |
31 | "type": "vcs", | |
32 | "url": "https://github.com/wallabag/php-readability" | |
33 | }, | |
c78c1a3f NL |
34 | { |
35 | "type": "vcs", | |
36 | "url": "https://github.com/wallabag/Fivefilters_Libraries" | |
a20f96b7 NL |
37 | } |
38 | ], | |
7d2eb7a7 | 39 | "require": { |
93fd4692 | 40 | "php": ">=5.3.3", |
75e9d1df | 41 | "symfony/symfony": "~2.7.0", |
93fd4692 NL |
42 | "doctrine/orm": "~2.2,>=2.2.3", |
43 | "doctrine/doctrine-bundle": "~1.2", | |
44 | "twig/extensions": "~1.0", | |
45 | "symfony/assetic-bundle": "~2.3", | |
46 | "symfony/swiftmailer-bundle": "~2.3", | |
47 | "symfony/monolog-bundle": "~2.4", | |
48 | "sensio/distribution-bundle": "~3.0.12", | |
49 | "sensio/framework-extra-bundle": "~3.0", | |
50 | "incenteev/composer-parameter-handler": "~2.0", | |
75e9d1df | 51 | "nelmio/cors-bundle": "~1.4.0", |
569f8d68 NL |
52 | "friendsofsymfony/rest-bundle": "~1.4", |
53 | "jms/serializer-bundle": "~0.13", | |
54 | "nelmio/api-doc-bundle": "~2.7", | |
daacffef J |
55 | "ezyang/htmlpurifier": "~4.6", |
56 | "mgargano/simplehtmldom": "~1.5", | |
daacffef J |
57 | "tecnick.com/tcpdf": "~6.2", |
58 | "simplepie/simplepie": "~1.3.1", | |
75e9d1df JB |
59 | "willdurand/hateoas-bundle": "~0.5.0", |
60 | "htmlawed/htmlawed": "~1.1.19", | |
61 | "liip/theme-bundle": "~1.1.3", | |
68568bf0 NL |
62 | "wallabag/php-readability": "~1.0.0", |
63 | "wallabag/Fivefilters_Libraries": "~1.0", | |
26864574 NL |
64 | "pagerfanta/pagerfanta": "~1.0.3", |
65 | "lexik/form-filter-bundle": "~4.0" | |
f3052b45 NL |
66 | }, |
67 | "require-dev": { | |
75e9d1df | 68 | "doctrine/doctrine-fixtures-bundle": "~2.2.0", |
daacffef J |
69 | "sensio/generator-bundle": "~2.5", |
70 | "phpunit/phpunit": "~4.4" | |
f3052b45 | 71 | }, |
19875ef0 NL |
72 | "scripts": { |
73 | "post-install-cmd": [ | |
93fd4692 NL |
74 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", |
75 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
76 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
77 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
c5772d11 | 78 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
93fd4692 NL |
79 | ], |
80 | "post-update-cmd": [ | |
81 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | |
82 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
83 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
84 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
2e45e7be | 85 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
19875ef0 NL |
86 | ] |
87 | }, | |
93fd4692 NL |
88 | "extra": { |
89 | "symfony-app-dir": "app", | |
90 | "symfony-web-dir": "web", | |
91 | "symfony-assets-install": "relative", | |
92 | "incenteev-parameters": { | |
93 | "file": "app/config/parameters.yml" | |
93fd4692 NL |
94 | } |
95 | }, | |
6ad93dff | 96 | "autoload": { |
c5772d11 | 97 | "psr-0": { "": "src/" } |
6ad93dff | 98 | }, |
f3052b45 NL |
99 | "config": { |
100 | "bin-dir": "bin" | |
daacffef J |
101 | }, |
102 | "minimum-stability": "dev", | |
103 | "prefer-stable": true | |
104 | } |