-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpdox-composer.xml
More file actions
26 lines (19 loc) · 1.03 KB
/
phpdox-composer.xml
File metadata and controls
26 lines (19 loc) · 1.03 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
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<bootstrap/>
<project name="Composer Phar Bin plugin" source="${basedir}/vendor/composer/composer" workdir="${basedir}/build/phpdox/composer/xml">
<!-- Additional configuration for the collecting process (parsing of php code, generation of xml data) -->
<collector publiconly="true" backend="parser" encoding="auto">
<!-- <include / exclude filter for filelist generator, mask must follow fnmatch() requirements -->
<!-- Multiple elements can be added to define more than one mask per filter -->
<include mask="*.php"/>
<exclude mask=""/>
<!-- How to handle inheritance -->
<inheritance resolve="false"/>
</collector>
<!-- Configuration of generation process -->
<generator output="${basedir}/build/phpdox/composer">
<build engine="xml" enabled="true" output="" />
</generator>
</project>
</phpdox>