forked from BeWelcome/rox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpdox.xml.dist
37 lines (37 loc) · 1.5 KB
/
phpdox.xml.dist
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
36
37
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<project name="Rox" source="${basedir}/src"
workdir="${basedir}/tmp/phpdox/xml">
<collector publiconly="false" backend="parser" encoding="auto">
<include mask="*.php" />
<exclude mask="" />
<inheritance resolve="false" />
</collector>
<generator output="${basedir}/doc/phpdox">
<enrich base="${basedir}">
<source type="phploc" />
<source type="git">
<git binary="/usr/bin/git" />
<history enabled="true" limit="15"
cache="${phpDox.project.workdir}/gitlog.xml" />
</source>
<source type="phpcs">
<file name="phpcs.xml" />
</source>
<source type="pmd">
<file name="phpmd.xml" />
</source>
<!-- PHPUnit Coverage XML -->
<source type="phpunit">
<coverage path="coverage/xml" />
<filter directory="${phpDox.project.source}" />
</source>
</enrich>
<!-- default engine "html" -->
<build engine="html" enabled="true" output="">
<template dir="${phpDox.home}/templates/html" />
<file extension="xhtml" />
</build>
</generator>
</project>
</phpdox>