Add PHPDoc config

This commit is contained in:
Daniel J. Summers 2025-04-20 18:55:58 -04:00
parent 85b461e441
commit dd9ef52101
2 changed files with 24 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.idea .idea
.phpdoc
_site
vendor vendor
*-tests.txt *-tests.txt

22
phpdoc.dist.xml Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor
configVersion="3"
title="PDODocument"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://www.phpdoc.org"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/phpDocumentor/phpDocumentor/master/data/xsd/phpdoc.xsd">
<paths>
<output>_site/api</output>
<cache>.phpdoc/cache</cache>
</paths>
<version number="2.1.0">
<api>
<source dsn=".">
<path>src</path>
</source>
<visibility>public</visibility>
<default-package-name>PDODocument</default-package-name>
</api>
</version>
<setting name="template.color" value="blue" />
</phpdocumentor>