Skip to content

Commit

Permalink
Add composer install step
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcullum committed Feb 4, 2019
1 parent d311b8c commit ea32d59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
<project name="joindin-responsive" default="build" basedir=".">
<property name="basedir" value="."/>

<target name="build" depends="phplint,jsvalidate,phpunit,phpcs" />
<target name="build" depends="composer,phplint,jsvalidate,phpunit,phpcs" />

<target name="composer" description="Run composer">
<exec command="composer install" logoutput="/dev/stdout" checkreturn="true" />
</target>

<target name="phplint" description="Run php -l over the fileset">
<phplint haltonfailure="true">
Expand Down

0 comments on commit ea32d59

Please sign in to comment.