Created
November 28, 2014 11:32
-
-
Save zot24/e185ec4feaa59886656b to your computer and use it in GitHub Desktop.
PHP Dox example config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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