forked from froxlor/Froxlor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpdox.xml
35 lines (31 loc) · 872 Bytes
/
phpdox.xml
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
29
30
31
32
33
34
35
<phpdox xmlns="http://xml.phpdox.net/config">
<project name="froxlor" source="${basedir}/lib/classes/api"
workdir="${basedir}/build/phpdox">
<collector publiconly="true" backend="parser">
<include mask="*.php" />
</collector>
<generator output="${basedir}/build">
<enrich base="${basedir}/build">
<!-- add phploc output -->
<source type="phploc">
<file name="logs/phploc.xml" />
</source>
<!-- PHP Code Sniffer findings -->
<source type="phpcs">
<file name="logs/checkstyle.xml" />
</source>
<!-- PHPMessDetector -->
<source type="pmd">
<file name="logs/pmd.xml" />
</source>
<!-- PHPUnit Coverage XML
<source type="phpunit">
</source>
-->
</enrich>
<build engine="html" enabled="true" output="api">
<file extension="html" />
</build>
</generator>
</project>
</phpdox>