-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpdox.xml
More file actions
60 lines (51 loc) · 2.35 KB
/
phpdox.xml
File metadata and controls
60 lines (51 loc) · 2.35 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<bootstrap />
<project name="phpdox" source="${basedir}/app" workdir="${basedir}/build/phpdox/xml">
<collector publiconly="false" backend="parser">
<include mask="*.php" />
<exclude mask="" />
<inheritance resolve="true">
</inheritance>
</collector>
<!-- Configuration of generation process -->
<generator output="${basedir}/build/phpdox">
<enrich base="${basedir}/build">
<source type="build" />
<!-- add phploc output
<source type="phploc">
<file name="logs/pmd.xml" />
</source>
-->
<!-- add git vcs information
<source type="git">
<history enabled="true" limit="15" cache="${phpDox.project.workdir}/gitlog.xml" />
</source>
-->
<source type="phpunit">
<coverage path="coverage/xml/"></coverage>
</source>
<!-- enrichment source
<source type="checkstyle">
<file name="logs/checkstyle.xml" />
</source>
-->
<!-- PHPMessDetector
<source type="pmd">
<file name="logs/pmd.xml" />
</source>
-->
</enrich>
<!-- <build engine="..." enabled="true" output="..." /> -->
<!-- @engine - The name of the engine this build task uses, use ./phpDox - -engines to get a list of available engines -->
<!-- @enabled - Flag to enable/disable this engine, default: enabled=true -->
<!-- @output - (optional) Output directory; if relative (no / as first char) it is interpreted as relative to generator/@output -->
<!-- An engine and thus build node can have additional configuration child nodes, please check the documentation for the engine to find out more -->
<!-- default engine "html" -->
<build engine="html" enabled="true" output="html">
<template dir="${phpDox.home}/templates/html" />
<file extension="html" />
</build>
</generator>
</project>
</phpdox>