-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpdox.xml
30 lines (30 loc) · 950 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
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config">
<project name="Notifications" source="${basedir}/app" workdir="${basedir}/build/phpdox">
<collector backend="parser" publiconly="false">
<include mask="*.php" />
</collector>
<generator output="${basedir}/build">
<enrich base="${basedir}/build">
<source type="git">
<git binary="git" />
</source>
<source type="phploc">
<file name="logs/phploc.xml" />
</source>
<source type="checkstyle">
<file name="logs/checkstyle.xml" />
</source>
<source type="pmd">
<file name="logs/pmd.xml" />
</source>
<source type="phpunit">
<coverage path="logs/coverage" />
</source>
</enrich>
<build engine="html" output="api">
<file extension="html" />
</build>
</generator>
</project>
</phpdox>