Skip to content

Commit bd5c17e

Browse files
Initial work on update-dependencies target
1 parent f35c27c commit bd5c17e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.xml

+15
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,21 @@
1616
</exec>
1717
</target>
1818

19+
<target name="update-dependencies" description="Update (and bump) dependencies with Composer">
20+
<exec executable="${basedir}/tools/composer" taskname="composer">
21+
<arg value="update"/>
22+
<arg value="--no-interaction"/>
23+
<arg value="--no-progress"/>
24+
<arg value="--no-ansi"/>
25+
</exec>
26+
27+
<exec executable="${basedir}/tools/composer" taskname="composer">
28+
<arg value="bump"/>
29+
<arg value="--no-interaction"/>
30+
<arg value="--no-ansi"/>
31+
</exec>
32+
</target>
33+
1934
<target name="update-tools">
2035
<exec executable="phive" taskname="phive">
2136
<arg value="--no-progress"/>

0 commit comments

Comments
 (0)