-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpdox.xml
More file actions
38 lines (32 loc) · 1.66 KB
/
Copy pathphpdox.xml
File metadata and controls
38 lines (32 loc) · 1.66 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
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://phpdox.de/config" silent="false">
<!-- @silent: true | false to enable or disable visual output of progress -->
<!-- A phpDox project to process, you can have multiple projects in one config file -->
<project name="TrackStarApplication" source="." workdir="build/phpdox">
<!-- Additional configuration for the collecting process (parse of php code, generation of xml data) -->
<collector publiconly="false">
<!-- @publiconly - Flag to disable/enable processing of non public methods and members -->
<!-- <include / exclude filter for filelist generator -->
<include mask="*.php" />
<exclude mask="*Autoload.php" />
<exclude mask="*/assets*" />
<exclude mask="*/build*" />
<exclude mask="*/css*" />
<exclude mask="*/images*" />
<exclude mask="*/protected/extensions*" />
<exclude mask="*/protected/runtime*" />
<exclude mask="*/protected/vendors*" />
</collector>
<!-- Configuration of generation process -->
<generator output="build">
<!-- default engine "html" -->
<build engine="html" enabled="true" output="api"/>
<build engine="todo" enabled="true" output="todo">
<file name="todolist.txt" encoding="utf-8" />
</build>
<build engine="graph" enabled="true" output="graph">
<dot executable="/usr/bin/dot" render="true" format="png" />
</build>
</generator>
</project>
</phpdox>