-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpdox.xml
66 lines (46 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<project name="module_template" source="${basedir}" workdir="${basedir}/.tmp-doc/phpdox/xml">
<property name="author.name" value="Óscar Novás" />
<property name="author.mail" value="hola@oscarnovas.com" />
<collector publiconly="false" backend="parser" encoding="auto">
<include mask="*.php" />
<include mask="*.module" />
<include mask="*.install" />
<include mask="*.inc" />
<exclude mask="*.yml" />
<exclude mask="*.xml" />
<exclude mask="*.po" />
<exclude mask="*.css" />
<exclude mask="*.js" />
<exclude mask="*.twig" />
<exclude mask="*.json" />
<exclude mask="*.md" />
<exclude mask="**node_modules**" />
<exclude mask="**vendor**" />
<inheritance resolve="true">
</inheritance>
</collector>
<generator output="${basedir}/docs">
<enrich base="${basedir}">
<source type="phploc">
<file name=".tmp-doc/phploc.xml" />
</source>
<source type="git">
<git binary="git" />
<history enabled="true" limit="15" />
</source>
<source type="phpcs">
<file name=".tmp-doc/phpcs.xml" />
</source>
<source type="pmd">
<file name=".tmp-doc/phpmd.xml" />
</source>
</enrich>
<build engine="html" enabled="true" output="manual">
<template dir="${phpDox.home}/templates/html_onovas" />
<file extension="html" />
</build>
</generator>
</project>
</phpdox>