aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-22 08:30:07 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-22 08:30:07 +0100
commit93fd4692f6eb753cae16358131c8049d84cfbb41 (patch)
tree1ef2f66eb378cf419d1aa033a2c772539e60537d /composer.json
parent0440249631164a378981d014bf71b617c082bf5a (diff)
downloadwallabag-93fd4692f6eb753cae16358131c8049d84cfbb41.tar.gz
wallabag-93fd4692f6eb753cae16358131c8049d84cfbb41.tar.zst
wallabag-93fd4692f6eb753cae16358131c8049d84cfbb41.zip
symfony is there
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json45
1 files changed, 41 insertions, 4 deletions
diff --git a/composer.json b/composer.json
index c0c6ac24..927b4230 100644
--- a/composer.json
+++ b/composer.json
@@ -53,10 +53,18 @@
53 } 53 }
54 ], 54 ],
55 "require": { 55 "require": {
56 "twig/twig": "1.*", 56 "php": ">=5.3.3",
57 "twig/extensions": "1.0.*", 57 "symfony/symfony": "2.6.*",
58 "doctrine/orm": "~2.2,>=2.2.3",
59 "doctrine/doctrine-bundle": "~1.2",
60 "twig/extensions": "~1.0",
61 "symfony/assetic-bundle": "~2.3",
62 "symfony/swiftmailer-bundle": "~2.3",
63 "symfony/monolog-bundle": "~2.4",
64 "sensio/distribution-bundle": "~3.0.12",
65 "sensio/framework-extra-bundle": "~3.0",
66 "incenteev/composer-parameter-handler": "~2.0",
58 "umpirsky/twig-gettext-extractor": "1.1.*", 67 "umpirsky/twig-gettext-extractor": "1.1.*",
59 "fabpot/goutte": "2.0.*@dev",
60 "ezyang/htmlpurifier": "dev-master", 68 "ezyang/htmlpurifier": "dev-master",
61 "mgargano/simplehtmldom": "dev-master", 69 "mgargano/simplehtmldom": "dev-master",
62 "robmorgan/phinx": "*", 70 "robmorgan/phinx": "*",
@@ -72,15 +80,44 @@
72 "wallabag/Fivefilters_Libraries": "dev-master" 80 "wallabag/Fivefilters_Libraries": "dev-master"
73 }, 81 },
74 "require-dev": { 82 "require-dev": {
83 "sensio/generator-bundle": "~2.3",
75 "phpunit/phpunit": "~3.7" 84 "phpunit/phpunit": "~3.7"
76 }, 85 },
77 "scripts": { 86 "scripts": {
87 "post-root-package-install": [
88 "SymfonyStandard\\Composer::hookRootPackageInstall"
89 ],
78 "post-install-cmd": [ 90 "post-install-cmd": [
91 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
92 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
93 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
94 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
95 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
96 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
79 "bin/install" 97 "bin/install"
98 ],
99 "post-update-cmd": [
100 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
101 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
102 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
103 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
104 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
105 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
80 ] 106 ]
81 }, 107 },
108 "extra": {
109 "symfony-app-dir": "app",
110 "symfony-web-dir": "web",
111 "symfony-assets-install": "relative",
112 "incenteev-parameters": {
113 "file": "app/config/parameters.yml"
114 },
115 "branch-alias": {
116 "dev-master": "2.6-dev"
117 }
118 },
82 "autoload": { 119 "autoload": {
83 "psr-4": { "Wallabag\\": "src/Wallabag" } 120 "psr-0": { "": "src/", "SymfonyStandard": "app/" }
84 }, 121 },
85 "config": { 122 "config": {
86 "bin-dir": "bin" 123 "bin-dir": "bin"