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 c3a4cad commit 0d03817Copy full SHA for 0d03817
build.xml
@@ -1,13 +1,10 @@
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"/>
5
- </target>
6
-
7
- <!-- Runs ApiGen -->
8
- <target name="apigen">
9
- <exec command="apigen generate --todo --tree --source src --destination doc/api" passthru="true"
10
- checkreturn="true"/>
+ <exec executable="composer" checkreturn="true" passthru="true">
+ <arg value="--ansi"/>
+ <arg value="update"/>
+ </exec>
11
</target>
12
13
<!-- Runs all unit tests -->
0 commit comments