summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--phpdoc.dist.xml24
2 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7f935f80..2334aa5e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,6 @@
# Composer
/vendor/
/composer.lock
+
+# phpDocumentor
+phpdoc.xml
diff --git a/phpdoc.dist.xml b/phpdoc.dist.xml
new file mode 100644
index 00000000..bbddd3db
--- /dev/null
+++ b/phpdoc.dist.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<phpdocumentor
+ configVersion="3"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="https://www.phpdoc.org"
+ xsi:noNamespaceSchemaLocation="https://docs.phpdoc.org/latest/phpdoc.xsd"
+>
+ <paths>
+ <output>docs/api</output>
+ <cache>docs/cache</cache>
+ </paths>
+ <version number="latest">
+ <api>
+ <source dsn=".">
+ </source>
+ <ignore>
+ <path>scripts</path>
+ <path>tests</path>
+ <path>vendor/**/*</path>
+ <path>xsl</path>
+ </ignore>
+ </api>
+ </version>
+</phpdocumentor>