-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpdox.xml
43 lines (42 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8" ?>
<!--
~ FluentDOM
~
~ @link https://thomas.weinert.info/FluentDOM/
~ @copyright Copyright 2009-2021 FluentDOM Contributors
~ @license http://www.opensource.org/licenses/mit-license.php The MIT License
~
-->
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<bootstrap />
<project name="FluentDOM" source="src" workdir="${basedir}/build/phpdox/xml">
<collector publiconly="false" backend="parser">
<include mask="*.php" />
<exclude mask="" />
<inheritance resolve="true"/>
</collector>
<generator output="${basedir}/build/docs">
<enrich base="${basedir}/build">
<source type="build" />
<source type="phploc">
<file name="logs/phploc.xml" />
</source>
<source type="git">
<executable file="git"/>
<history enabled="true" limit="15" cache="./build/logs/gitlog.xml" />
</source>
<source type="pmd">
<file name="logs/phpmd.xml" />
</source>
<source type="phpunit">
<path name="coverage/xml" />
</source>
</enrich>
<!-- default engine "html" -->
<build engine="html" enabled="true" output="html">
<template path="${phpDox.home}/templates/html" />
<file extension="xhtml" />
</build>
</generator>
</project>
</phpdox>