Modify build to use PHPDocumentor 2 rather than PHPDocumentor 1

This commit is contained in:
Mark Baker 2013-04-27 22:47:25 +01:00
parent 28f266bbba
commit d41c8aacf7
1 changed files with 4 additions and 8 deletions

View File

@ -95,17 +95,13 @@
<target name="apidocs" depends="versionNumber">
<echo msg="Generating API documentation..."/>
<phpdoc title="PHPExcel classes"
<phpdoc2 title="PHPExcel classes"
destdir="${phing.dir}/build/Documentation/API"
sourcecode="true"
output="HTML:Smarty:PHP"
defaultcategoryname="PHPExcel"
defaultpackagename="PHPExcel"
pear="true">
template="responsive">
<fileset dir="${phing.dir}/build/Classes">
<include name="**/*.php"/>
</fileset>
</phpdoc>
</phpdoc2>
</target>
<target name="release-standard" depends="apidocs">