-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpdoc.dist.xml
54 lines (48 loc) · 1.7 KB
/
phpdoc.dist.xml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8" ?>
<phpdoc>
<!-- Title of your project. It will be used to show a mini description -->
<title>Universal Framework PHP Documentation</title>
<!-- [1]
Directories and files from where will be extracted the documentation;
where your PHP sources are. -->
<files>
<!--
<directory>src/shim</directory>
-->
<!-- Source document php -->
<directory>src/Cookie</directory>
<directory>src/DB</directory>
<directory>src/Filemanager</directory>
<directory>src/GoogleExt</directory>
<directory>src/JSON</directory>
<directory>src/MVC</directory>
<directory>src/Session</directory>
<directory>src/simplehtmldom</directory>
<!-- You can include as many <directory> you need. And also, specific files
by using <file> tag-->
<!-- <file>vendor/cakephp/utility/Text.php</file> -->
</files>
<transformer>
<!-- [2]
Directory where the generate documentation files be. Set it according to
your VuePress config. In this case, it will be used the route `/demo`,
but you can use any you want -->
<target>docs-src/php</target>
</transformer>
<transformations>
<template name="docs-src/data/templates/vuepress" />
</transformations>
<parser>
<!-- [4] Elements to include in your documentation by visibility:
public, protected and private. -->
<visibility>public,protected</visibility>
<!-- Directory where to put the cache. This can be set to any directory.
Remember ignore it by Git -->
<target>tmp/phpdoc/api-cache</target>
<extensions>
<extension>module</extension>
<extension>inc</extension>
<extension>php</extension>
</extensions>
</parser>
</phpdoc>