Skip to content

Commit 8636fd2

Browse files
committed
Show outdated packages.
1 parent 759b461 commit 8636fd2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

build.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
<project name="PhpPlaisio" default="build" basedir=".">
22
<!-- Run composer update and executes various other updates -->
33
<target name="update">
4-
<exec command="composer update" checkreturn="true" passthru="true"/>
4+
<exec executable="composer" checkreturn="true" passthru="true">
5+
<arg value="--ansi"/>
6+
<arg value="update"/>
7+
</exec>
8+
9+
<!-- Show outdated packages -->
10+
<exec executable="composer" checkreturn="true" passthru="true">
11+
<arg value="--ansi"/>
12+
<arg value="outdated"/>
13+
<arg value="--direct"/>
14+
</exec>
515
</target>
616

717
<target name="kernel">

0 commit comments

Comments
 (0)