diff options
author | Jeremy <jeremy.benoist@gmail.com> | 2015-02-01 20:16:27 +0100 |
---|---|---|
committer | Jeremy <jeremy.benoist@gmail.com> | 2015-02-01 20:16:27 +0100 |
commit | 2e45e7bebcdf4e3d990f965bf04a9051343168a4 (patch) | |
tree | b0d3801b979931ebc9f3552132215e5eb8ec77f7 /composer.json | |
parent | 8394ab46191f717dc9c32fecfa6809f958951dca (diff) | |
download | wallabag-2e45e7bebcdf4e3d990f965bf04a9051343168a4.tar.gz wallabag-2e45e7bebcdf4e3d990f965bf04a9051343168a4.tar.zst wallabag-2e45e7bebcdf4e3d990f965bf04a9051343168a4.zip |
New wallabag installer
Instead of the legacy bin/install here is a symfony command that can initialize wallabag.
There are still work to do on the requirements part (to be sure that wallabag can run like a charm).
I've also added (but commented) the fixtures load part (which will need an extra doctrine package). We'll see that point later.
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/composer.json b/composer.json index d83a497e..2b22d6bd 100644 --- a/composer.json +++ b/composer.json | |||
@@ -87,25 +87,20 @@ | |||
87 | "phpunit/phpunit": "~4.4" | 87 | "phpunit/phpunit": "~4.4" |
88 | }, | 88 | }, |
89 | "scripts": { | 89 | "scripts": { |
90 | "post-root-package-install": [ | ||
91 | "SymfonyStandard\\Composer::hookRootPackageInstall" | ||
92 | ], | ||
93 | "post-install-cmd": [ | 90 | "post-install-cmd": [ |
94 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | 91 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", |
95 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | 92 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", |
96 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | 93 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", |
97 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | 94 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", |
98 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | 95 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", |
99 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles", | 96 | "app/console wallabag:install --no-interaction" |
100 | "bin/install" | ||
101 | ], | 97 | ], |
102 | "post-update-cmd": [ | 98 | "post-update-cmd": [ |
103 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | 99 | "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", |
104 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | 100 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", |
105 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | 101 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", |
106 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | 102 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", |
107 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | 103 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
108 | "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles" | ||
109 | ] | 104 | ] |
110 | }, | 105 | }, |
111 | "extra": { | 106 | "extra": { |