]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - composer.json
Remove unsed things
[github/wallabag/wallabag.git] / composer.json
... / ...
CommitLineData
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 "role": "Developer"
23 }
24 ],
25 "support": {
26 "email": "hello@wallabag.org",
27 "issues": "https://github.com/wallabag/wallabag/issues"
28 },
29 "repositories": [
30 {
31 "type": "vcs",
32 "url": "https://github.com/wallabag/php-readability"
33 },
34 {
35 "type": "vcs",
36 "url": "https://github.com/wallabag/Fivefilters_Libraries"
37 }
38 ],
39 "require": {
40 "php": ">=5.3.3",
41 "symfony/symfony": "~2.7.0",
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",
51 "nelmio/cors-bundle": "~1.4.0",
52 "friendsofsymfony/rest-bundle": "~1.4",
53 "jms/serializer-bundle": "~0.13",
54 "nelmio/api-doc-bundle": "~2.7",
55 "ezyang/htmlpurifier": "~4.6",
56 "mgargano/simplehtmldom": "~1.5",
57 "tecnick.com/tcpdf": "~6.2",
58 "simplepie/simplepie": "~1.3.1",
59 "willdurand/hateoas-bundle": "~0.5.0",
60 "htmlawed/htmlawed": "~1.1.19",
61 "liip/theme-bundle": "~1.1.3",
62 "wallabag/php-readability": "~1.0.0",
63 "wallabag/Fivefilters_Libraries": "~1.0",
64 "pagerfanta/pagerfanta": "~1.0.3",
65 "lexik/form-filter-bundle": "~4.0"
66 },
67 "require-dev": {
68 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
69 "sensio/generator-bundle": "~2.5",
70 "phpunit/phpunit": "~4.4"
71 },
72 "scripts": {
73 "post-install-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 "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",
85 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
86 ]
87 },
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"
94 }
95 },
96 "autoload": {
97 "psr-0": { "": "src/" }
98 },
99 "config": {
100 "bin-dir": "bin"
101 },
102 "minimum-stability": "dev",
103 "prefer-stable": true
104}