Froxlor/phpdox.xml
Michael Kaufmann e1987af34d
[CI] add composer to build.xml; run PHPCompatibility check; run only phpunit in travis
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
2018-12-23 10:39:27 +01:00

38 lines
1.1 KiB
XML

<phpdox xmlns="http://xml.phpdox.net/config">
<project name="froxlor" source="${basedir}/lib/Froxlor"
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-standard.xml" />
</source>
<!-- PHP Code Sniffer PHPCompatibility -->
<source type="phpcs">
<file name="logs/checkstyle-compat.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>