-
Notifications
You must be signed in to change notification settings - Fork 121
Closed
Labels
Description
I have a bigger php project but running phpdox leaves only a few css files and an index.xhtml file.
This is the phpdox output:
phpdox:
[exec] phpdox 0.4.0 - Copyright (C) 2010 - 2012 by Arne Blankerts
[exec]
[exec] [29.03.2012 - 20:08:23] Using config file '/var/lib/jenkins/jobs/Textadventure/workspace/phpdox.xml'
[exec] [29.03.2012 - 20:08:23] Registered output engine 'html'
[exec] [29.03.2012 - 20:08:23] Registered output engine 'graph'
[exec] [29.03.2012 - 20:08:23] Registered output engine 'todo'
[exec] [29.03.2012 - 20:08:23] Registered output engine 'xslrunner'
[exec] [29.03.2012 - 20:08:23] Starting to process project 'Textadventure-NextGen'
[exec] [29.03.2012 - 20:08:23] Starting collector
[exec]
[exec] .................................................. [50]
[exec] ................................... [85]
[exec]
[exec]
[exec] [29.03.2012 - 20:08:27] Collector process completed
[exec] [29.03.2012 - 20:08:27] Starting generator
[exec]
[exec] ...... [6]
[exec]
[exec]
[exec] [29.03.2012 - 20:08:27] Triggering raw engines
[exec]
[exec] [29.03.2012 - 20:08:27] Generator process completed
[exec] [29.03.2012 - 20:08:27] Processing project 'Textadventure-NextGen' completed.
[exec]
[exec]
[exec] Time: 4 seconds, Memory: 9.50Mb
[exec]
and this my xml file
<?xml version="1.0" encoding="UTF-8"?>
<phpdox xmlns="http://phpdox.de/config">
<project name="Textadventure-NextGen" source="." workdir="build/phpdox">
<collector publiconly="false">
<include mask="*.php" />
<exclude mask="**/protected/vendors/**" />
<exclude mask="**/protected/tests/**" />
</collector>
<generator output="build">
<build engine="html" enabled="true" output="api" />
<build engine="todo" enabled="true" output="todo">
<file name="todolist.txt" encoding="utf-8" />
</build>
</generator>
</project>
</phpdox>