We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759b461 commit 8636fd2Copy full SHA for 8636fd2
build.xml
@@ -1,7 +1,17 @@
1
<project name="PhpPlaisio" default="build" basedir=".">
2
<!-- Run composer update and executes various other updates -->
3
<target name="update">
4
- <exec command="composer update" checkreturn="true" passthru="true"/>
+ <exec executable="composer" checkreturn="true" passthru="true">
5
+ <arg value="--ansi"/>
6
+ <arg value="update"/>
7
+ </exec>
8
+
9
+ <!-- Show outdated packages -->
10
11
12
+ <arg value="outdated"/>
13
+ <arg value="--direct"/>
14
15
</target>
16
17
<target name="kernel">
0 commit comments