]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
e16de833e797e50cc34f32fb11408422f3b39eb4
[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 "tecnickcom/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 "friendsofsymfony/user-bundle": "dev-master",
57 "friendsofsymfony/oauth-server-bundle": "^1.4@dev",
58 "scheb/two-factor-bundle": "~1.4"
59 },
60 "require-dev": {
61 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
62 "sensio/generator-bundle": "~2.5",
63 "phpunit/phpunit": "~4.4"
64 },
65 "scripts": {
66 "post-install-cmd": [
67 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
68 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
69 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
70 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
71 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
72 ],
73 "post-update-cmd": [
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",
78 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
79 ]
80 },
81 "extra": {
82 "symfony-app-dir": "app",
83 "symfony-web-dir": "web",
84 "symfony-assets-install": "relative",
85 "incenteev-parameters": {
86 "file": "app/config/parameters.yml"
87 }
88 },
89 "autoload": {
90 "psr-0": { "": "src/" }
91 },
92 "config": {
93 "bin-dir": "bin"
94 },
95 "minimum-stability": "dev",
96 "prefer-stable": true
97 }