Skip to content

Commit aa27b23

Browse files
Initial work on update-dependencies target
1 parent c958589 commit aa27b23

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@
2323
</exec>
2424
</target>
2525

26+
<target name="update-dependencies" description="Update (and bump) dependencies with Composer">
27+
<exec executable="${basedir}/tools/composer" taskname="composer">
28+
<arg value="update"/>
29+
<arg value="--no-interaction"/>
30+
<arg value="--no-progress"/>
31+
<arg value="--no-ansi"/>
32+
</exec>
33+
34+
<exec executable="${basedir}/tools/composer" taskname="composer">
35+
<arg value="bump"/>
36+
<arg value="--no-interaction"/>
37+
<arg value="--no-ansi"/>
38+
</exec>
39+
</target>
40+
2641
<target name="update-tools">
2742
<exec executable="${basedir}/tools/phive">
2843
<arg value="--no-progress"/>

0 commit comments

Comments
 (0)