]> git.immae.eu Git - github/wallabag/wallabag.git/blob - composer.json
manage assets through npm
[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.5.9",
32 "ext-pcre": "*",
33 "ext-dom": "*",
34 "ext-curl": "*",
35 "ext-gd": "*",
36 "ext-session": "*",
37 "ext-ctype": "*",
38 "ext-hash": "*",
39 "ext-simplexml": "*",
40 "ext-json": "*",
41 "ext-mbstring": "*",
42 "ext-xml": "*",
43 "ext-iconv": "*",
44 "ext-tokenizer": "*",
45 "ext-pdo": "*",
46 "symfony/symfony": "3.0.*",
47 "doctrine/orm": "^2.5",
48 "doctrine/doctrine-bundle": "^1.6",
49 "doctrine/doctrine-cache-bundle": "^1.2",
50 "twig/extensions": "~1.0",
51 "symfony/swiftmailer-bundle": "^2.3",
52 "symfony/monolog-bundle": "^2.8",
53 "sensio/distribution-bundle": "^5.0",
54 "sensio/framework-extra-bundle": "^3.0.2",
55 "incenteev/composer-parameter-handler": "^2.0",
56 "nelmio/cors-bundle": "~1.4.0",
57 "friendsofsymfony/rest-bundle": "~1.4",
58 "jms/serializer-bundle": "~1.0",
59 "nelmio/api-doc-bundle": "~2.7",
60 "mgargano/simplehtmldom": "~1.5",
61 "tecnickcom/tcpdf": "~6.2",
62 "simplepie/simplepie": "~1.3.1",
63 "willdurand/hateoas-bundle": "~1.0",
64 "htmlawed/htmlawed": "~1.1.19",
65 "liip/theme-bundle": "~1.1",
66 "pagerfanta/pagerfanta": "~1.0.3",
67 "lexik/form-filter-bundle": "~5.0",
68 "j0k3r/graby": "~1.0",
69 "friendsofsymfony/user-bundle": "~2.0@dev",
70 "friendsofsymfony/oauth-server-bundle": "^1.5",
71 "stof/doctrine-extensions-bundle": "^1.2@dev",
72 "scheb/two-factor-bundle": "~2.0",
73 "grandt/phpepub": "~4.0",
74 "wallabag/php-mobi": "~1.0.0",
75 "kphoen/rulerz-bundle": "~0.10",
76 "guzzlehttp/guzzle": "^5.2.0",
77 "doctrine/doctrine-migrations-bundle": "^1.0",
78 "paragonie/random_compat": "~1.0",
79 "craue/config-bundle": "~1.4",
80 "mnapoli/piwik-twig-extension": "^1.0",
81 "lexik/maintenance-bundle": "~2.1",
82 "ocramius/proxy-manager": "1.*",
83 "white-october/pagerfanta-bundle": "^1.0",
84 "mouf/nodejs-installer": "~1.0"
85 },
86 "require-dev": {
87 "doctrine/doctrine-fixtures-bundle": "~2.2",
88 "sensio/generator-bundle": "^3.0",
89 "phpunit/phpunit": "~4.4",
90 "symfony/phpunit-bridge": "^2.7",
91 "fabpot/php-cs-fixer": "~1.9"
92 },
93 "scripts": {
94 "post-cmd": [
95 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
96 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
97 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
98 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
99 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
100 ],
101 "post-install-cmd": [
102 "@post-cmd"
103 ],
104 "post-update-cmd": [
105 "@post-cmd"
106 ]
107 },
108 "extra": {
109 "symfony-app-dir": "app",
110 "symfony-bin-dir": "bin",
111 "symfony-var-dir": "var",
112 "symfony-web-dir": "web",
113 "symfony-tests-dir": "tests",
114 "incenteev-parameters": {
115 "file": "app/config/parameters.yml"
116 }
117 },
118 "autoload": {
119 "psr-4": { "Wallabag\\": "src/Wallabag/" },
120 "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
121 },
122 "config": {
123 "bin-dir": "bin"
124 },
125 "minimum-stability": "dev",
126 "prefer-stable": true
127 }