]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
Fixed my name & website :ok_hand:
[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 "repositories": [
31 {
32 "type": "vcs",
33 "url": "https://github.com/wallabag/php-readability"
34 },
35 {
36 "type": "vcs",
37 "url": "https://github.com/wallabag/Fivefilters_Libraries"
38 }
39 ],
40 "require": {
41 "php": ">=5.3.3",
42 "symfony/symfony": "~2.7.0",
43 "doctrine/orm": "~2.2,>=2.2.3",
44 "doctrine/doctrine-bundle": "~1.2",
45 "twig/extensions": "~1.0",
46 "symfony/assetic-bundle": "~2.3",
47 "symfony/swiftmailer-bundle": "~2.3",
48 "symfony/monolog-bundle": "~2.4",
49 "sensio/distribution-bundle": "~3.0.12",
50 "sensio/framework-extra-bundle": "~3.0",
51 "incenteev/composer-parameter-handler": "~2.0",
52 "nelmio/cors-bundle": "~1.4.0",
53 "friendsofsymfony/rest-bundle": "~1.4",
54 "jms/serializer-bundle": "~0.13",
55 "nelmio/api-doc-bundle": "~2.7",
56 "ezyang/htmlpurifier": "~4.6",
57 "mgargano/simplehtmldom": "~1.5",
58 "tecnick.com/tcpdf": "~6.2",
59 "simplepie/simplepie": "~1.3.1",
60 "willdurand/hateoas-bundle": "~0.5.0",
61 "htmlawed/htmlawed": "~1.1.19",
62 "liip/theme-bundle": "~1.1.3",
63 "wallabag/php-readability": "~1.0.0",
64 "wallabag/Fivefilters_Libraries": "~1.0",
65 "pagerfanta/pagerfanta": "~1.0.3",
66 "lexik/form-filter-bundle": "~4.0"
67 },
68 "require-dev": {
69 "doctrine/doctrine-fixtures-bundle": "~2.2.0",
70 "sensio/generator-bundle": "~2.5",
71 "phpunit/phpunit": "~4.4"
72 },
73 "scripts": {
74 "post-install-cmd": [
75 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
76 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
77 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
78 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
79 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
80 ],
81 "post-update-cmd": [
82 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
83 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
84 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
85 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
86 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
87 ]
88 },
89 "extra": {
90 "symfony-app-dir": "app",
91 "symfony-web-dir": "web",
92 "symfony-assets-install": "relative",
93 "incenteev-parameters": {
94 "file": "app/config/parameters.yml"
95 }
96 },
97 "autoload": {
98 "psr-0": { "": "src/" }
99 },
100 "config": {
101 "bin-dir": "bin"
102 },
103 "minimum-stability": "dev",
104 "prefer-stable": true
105 }