-
Notifications
You must be signed in to change notification settings - Fork 19
/
phpdox.xml.dist
28 lines (28 loc) · 1.15 KB
/
phpdox.xml.dist
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
<?xml version="1.0" encoding="utf-8" ?>
<phpdox xmlns="http://xml.phpdox.net/config" silent="false">
<project name="Akamai NetStorage for PHP" source="${basedir}/src" workdir="${basedir}/build/phpdox/xml">
<collector publiconly="false" backend="parser" encoding="auto">
<include mask="*.php" />
<exclude mask="" />
<inheritance resolve="true" />
</collector>
<generator output="${basedir}">
<enrich base="${basedir}/build">
<source type="phploc">
<file name="phploc.xml" />
</source>
<source type="phpunit">
<coverage path="coverage/xml" />
<filter directory="${phpDox.project.source}" />
</source>
<source type="checkstyle">
<file name="phpcs.xml" />
</source>
</enrich>
<build engine="html" enabled="true" output="docs">
<template dir="${phpDox.home}/templates/html" />
<file extension="html" />
</build>
</generator>
</project>
</phpdox>