diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-23 22:26:25 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-23 22:26:25 +0200 |
commit | ffb992f9a9437590eb77963f3ba523e29ba0532c (patch) | |
tree | a005e6b15775e848448bf42a00bfbc6c6aeded57 /build | |
parent | 83326718132811d8b57ac8612ff50887ec0fa101 (diff) | |
download | forums-ffb992f9a9437590eb77963f3ba523e29ba0532c.tar forums-ffb992f9a9437590eb77963f3ba523e29ba0532c.tar.gz forums-ffb992f9a9437590eb77963f3ba523e29ba0532c.tar.bz2 forums-ffb992f9a9437590eb77963f3ba523e29ba0532c.tar.xz forums-ffb992f9a9437590eb77963f3ba523e29ba0532c.zip |
[ticket/12051] Optimise Composer Autoloader on Build
PHPBB3-12051
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml index d3489ab607..84d45a0ea0 100644 --- a/build/build.xml +++ b/build/build.xml @@ -258,7 +258,7 @@ command="git archive ${revision} composer.phar | tar -xf - -C ${dir}" checkreturn="true" /> <exec dir="${dir}" - command="php composer.phar install --no-dev" + command="php composer.phar install --no-dev --optimize-autoloader" checkreturn="true" passthru="true" /> <delete file="${dir}/composer.phar" /> |