Skip to content
This repository has been archived by the owner on Apr 1, 2021. It is now read-only.

Commit

Permalink
Fix travis error
Browse files Browse the repository at this point in the history
  • Loading branch information
jawira committed Sep 17, 2019
1 parent fcb909f commit 2473264
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,22 @@
</target>

<target name="composer:install" description="Install dependencies">
<composer>
<arg value="install"/>
<composer command="install">
<arg value="--no-interaction"/>
<arg value="--prefer-dist"/>
</composer>
</target>

<target name="composer:optimize" description="Install dependencies optimized for production environment">
<composer>
<arg value="install"/>
<composer command="install">
<arg value="--no-dev"/>
<arg value="--optimize-autoloader"/>
<arg value="--prefer-dist"/>
</composer>
</target>

<target name="composer:validate" description="Checks if composer.json is valid">
<composer>
<arg value="validate"/>
<composer command="validate">
<arg value="--strict"/>
</composer>
</target>
Expand Down

0 comments on commit 2473264

Please sign in to comment.