Skip to content

Instantly share code, notes, and snippets.

@zot24
Created November 28, 2014 11:32
Show Gist options
  • Save zot24/e185ec4feaa59886656b to your computer and use it in GitHub Desktop.
Save zot24/e185ec4feaa59886656b to your computer and use it in GitHub Desktop.
PHP Dox example config file
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://phpdox.net/config">
<project name="MyProjectName" source="MyBaseDir" workdir="phpdox">
<collector publiconly="false">
<include mask="*/source1/**/*.php" />
<include mask="*/source2/**/*.php" />
<exclude mask="*autoload.php" />
</collector>
<generator output=".">
<enrich base="logs">
<source type="build" />
<source type="git" />
<source type="phploc" />
<source type="checkstyle" />
<source type="pmd" />
<source type="phpunit" />
</enrich>
<build engine="html" enabled="true" output="api">
<file extension="html" />
</build>
</generator>
</project>
</phpdox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment