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 Aug 28, 2024
1 parent c958589 commit aa27b23
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 @@ -23,6 +23,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="${basedir}/tools/phive">
<arg value="--no-progress"/>
Expand Down

0 comments on commit aa27b23

Please sign in to comment.