-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpdox.xml
More file actions
25 lines (24 loc) · 905 Bytes
/
phpdox.xml
File metadata and controls
25 lines (24 loc) · 905 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
<phpdox xmlns="http://phpdox.net/config">
<project name="json-form" source="${basedir}/src" workdir="${basedir}/build/phpdox">
<collector publiconly="false">
<include mask="*.php"/>
</collector>
<generator output="build">
<build engine="html" enabled="true" output="api">
<file extension="html"/>
</build>
<enrich base="${basedir}/build/logs">
<source type="build"/>
<source type="git">
<history enabled="true" limit="15"/>
</source>
<source type="checkstyle"/>
<source type="pmd"/>
<source type="phploc"/>
<source type="phpunit">
<coverage path="../coverage/xml"/>
</source>
</enrich>
</generator>
</project>
</phpdox>