Update to phpDocumentor 3 config

This commit is contained in:
Daniel Rudolf 2020-04-11 22:13:00 +02:00
parent 1b1fa73fd9
commit de5bd4399c
No known key found for this signature in database
GPG key ID: A061F02CD8DE4538

View file

@ -1,33 +1,36 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor> <phpdocumentor
<title><![CDATA[Pico API Documentation]]></title> configVersion="3"
<parser> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<target>.build/phpdoc.cache</target> xmlns="http://www.phpdoc.org"
</parser> xsi:noNamespaceSchemaLocation="data/xsd/phpdoc.xsd"
<transformer> >
<target>.build/phpdoc</target> <paths>
</transformer> <output>.build/phpdoc</output>
<transformations> <cache>.build/phpdoc.cache</cache>
<template name="clean"/> </paths>
</transformations> <version number="3.0.0">
<files> <folder>latest</folder>
<directory>.</directory> <api>
<file>index.php</file> <source dsn=".">
<file>index.php.dist</file> <path>.</path>
</source>
<!-- exclude .build and .github directories --> <output>private</output>
<ignore>.build/*</ignore> <ignore hidden="true" symlinks="true">
<ignore>.github/*</ignore> <path>.build/*</path>
<path>.github/*</path>
<!-- exclude user config --> <path>config/*</path>
<ignore>config/*</ignore> <path>plugins/**/*</path>
<file>config/config.yml.template</file> <path>themes/**/*</path>
<path>vendor/*</path>
<!-- exclude all plugins --> </ignore>
<ignore>plugins/*</ignore> <extensions>
<file>plugins/DummyPlugin.php</file> <extension>php</extension>
<extension>php.dist</extension>
<!-- exclude vendor dir --> </extensions>
<ignore>vendor/*</ignore> <include-source>true</include-source>
</files> <default-package-name>Pico</default-package-name>
</api>
</version>
<template name="default"/>
</phpdocumentor> </phpdocumentor>