Skip to content

Commit

Permalink
Initial work on update-dependencies target
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Oct 9, 2024
1 parent f35c27c commit bd5c17e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@
</exec>
</target>

<target name="update-dependencies" description="Update (and bump) dependencies with Composer">
<exec executable="${basedir}/tools/composer" taskname="composer">
<arg value="update"/>
<arg value="--no-interaction"/>
<arg value="--no-progress"/>
<arg value="--no-ansi"/>
</exec>

<exec executable="${basedir}/tools/composer" taskname="composer">
<arg value="bump"/>
<arg value="--no-interaction"/>
<arg value="--no-ansi"/>
</exec>
</target>

<target name="update-tools">
<exec executable="phive" taskname="phive">
<arg value="--no-progress"/>
Expand Down

0 comments on commit bd5c17e

Please sign in to comment.