build.xml 406 B

123456789101112131415
  1. <?xml version="1.0"?>
  2. <project name="generate" default="test" basedir=".">
  3. <property name="build.dir" value="_build" />
  4. <target name="docs" description="Create API documentation.">
  5. <exec command="doxygen doxygen.conf" />
  6. </target>
  7. <target name="test" description="Run all unit tests.">
  8. <exec command="phpunit --coverage-html coverage tests" passthru="true" />
  9. </target>
  10. </project>