-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpdoc.xml.dist
41 lines (41 loc) · 1.53 KB
/
phpdoc.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
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor configVersion="3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://www.phpdoc.org">
<!--
NOTE:
As per https://www.phpdoc.org/ recommendation, to not install phpDocumetor using Composer.
To generate documetation, download the "phpDocumentor.phar" using "wget https://phpdoc.org/phpDocumentor.phar"
in the root of the project, then run "php phpDocumentor.phar" to generate documentation under build/phpdoc.
-->
<title>VELOX API Docs</title>
<paths>
<output>build/phpdoc</output>
<cache>build/phpdoc/.cache</cache>
</paths>
<version number="3.0.0">
<folder>latest</folder>
<api>
<source dsn=".">
<path>classes</path>
<path>functions</path>
<path>config</path>
<path>includes</path>
<path>bin</path>
<path>bootstrap</path>
</source>
<output>api</output>
<ignore hidden="true" symlinks="true">
<path>tests/**/*</path>
</ignore>
<extensions>
<extension>php</extension>
</extensions>
<default-package-name>Velox</default-package-name>
<include-source>false</include-source>
<markers>
<marker>TODO</marker>
<marker>FIXME</marker>
</markers>
</api>
</version>
<template name="default"/>
</phpdocumentor>