1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/scripts/dev/generate-phpt/build.xml
2018-10-13 14:14:50 +02:00

16 lines
404 B
XML
Executable File

<?xml version="1.0"?>
<project name="generate" default="test" basedir=".">
<property name="build.dir" value="_build" />
<target name="docs" description="Create API documentation.">
<exec command="doxygen doxygen.conf" />
</target>
<target name="test" description="Run all unit tests.">
<exec command="phpunit --coverage-html coverage tests" passthru="true" />
</target>
</project>