Skip to content

Commit 98565fe

Browse files
committedOct 13, 2023
Add basic phpdoc configuration
1 parent 9903580 commit 98565fe

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
 

‎phpdoc.dist.xml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<phpdocumentor
3+
configVersion="3"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xmlns="https://www.phpdoc.org"
6+
>
7+
<title>Open Journal Systems</title>
8+
<paths>
9+
<output>docs/dev/build</output>
10+
</paths>
11+
<version number="latest">
12+
<api>
13+
<default-package-name>APP</default-package-name>
14+
<source dsn=".">
15+
<path>.</path>
16+
</source>
17+
<ignore>
18+
<path>**/tests</path>
19+
<path>**/vendor</path>
20+
<path>cache</path>
21+
</ignore>
22+
<include-source>true</include-source>
23+
<output>api</output>
24+
</api>
25+
<guide>
26+
<source dsn=".">
27+
<path>docs/dev/guide</path>
28+
</source>
29+
</guide>
30+
</version>
31+
<setting name="guides.enabled" value="true"/>
32+
</phpdocumentor>

0 commit comments

Comments
 (0)
Please sign in to comment.