-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (22 loc) · 787 Bytes
/
build.xml
File metadata and controls
28 lines (22 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<project name="cyclonephp/database" default="package">
<target name="test">
<phpunit codecoverage="false" haltonfailure="true" haltonerror="true"
bootstrap="vendor/autoload.php">
<batchtest>
<fileset dir="tests">
<include name="**/*Test*.php" />
</fileset>
</batchtest>
</phpunit>
</target>
<target name="generate-docs">
<phpdoc2 title="API documentation" destdir="docs">
<fileset dir="classes">
<include name="**/*.php" />
</fileset>
</phpdoc2>
</target>
<target name="package" depends="test,generate-docs">
</target>
</project>