]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
20bb553716ef7c6452f20d87bb957d940282ff62
[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.3.3",
32 "symfony/symfony": "~2.7.0",
33 "doctrine/orm": "~2.3",
34 "doctrine/doctrine-bundle": "~1.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 "tecnick.com/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 },
57 "require-dev": {
58 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
59 "sensio/generator-bundle": "~2.5",
60 "phpunit/phpunit": "~4.4"
61 },
62 "scripts": {
63 "post-install-cmd": [
64 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
65 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
66 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
67 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
68 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
69 ],
70 "post-update-cmd": [
71 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
72 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
73 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
74 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
75 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
76 ]
77 },
78 "extra": {
79 "symfony-app-dir": "app",
80 "symfony-web-dir": "web",
81 "symfony-assets-install": "relative",
82 "incenteev-parameters": {
83 "file": "app/config/parameters.yml"
84 }
85 },
86 "autoload": {
87 "psr-0": { "": "src/" }
88 },
89 "config": {
90 "bin-dir": "bin"
91 },
92 "minimum-stability": "dev",
93 "prefer-stable": true
94 }