Skip to content

Commit 9126d46

Browse files
committed
Add phpDocumentor
1 parent cfbf47d commit 9126d46

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ desktop.ini
1717
# PHPUnit
1818
/.phpunit.result.cache
1919
/clover.xml
20+
21+
# phpDocumentor
22+
/.phpdoc
23+
/docs

phpdoc.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<!--
3+
~ PHPUnitArrayAssertions - Array-related PHPUnit assertions for API testing.
4+
~
5+
~ @copyright Copyright (c) 2021, Daniel Rudolf (<https://www.daniel-rudolf.de>)
6+
~
7+
~ This file is copyrighted by the contributors recorded in the version control
8+
~ history of the file, available from the following original location:
9+
~
10+
~ <https://github.com/PhrozenByte/phpunit-throwable-asserts/blob/master/phpdoc.xml>
11+
~
12+
~ @license http://opensource.org/licenses/MIT The MIT License
13+
~
14+
~ SPDX-License-Identifier: MIT
15+
~ License-Filename: LICENSE
16+
-->
17+
18+
<phpdocumentor
19+
configVersion="3"
20+
xmlns="https://www.phpdoc.org"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
>
23+
<title>PHPUnitThrowableAssertions</title>
24+
<paths>
25+
<output>./docs</output>
26+
</paths>
27+
<version number="3.0.0">
28+
<api>
29+
<source dsn=".">
30+
<path>./src</path>
31+
</source>
32+
<visibility>public</visibility>
33+
<ignore hidden="true" symlinks="true">
34+
<path>./tests/**/*</path>
35+
<path>./vendor/**/*</path>
36+
</ignore>
37+
<extensions>
38+
<extension>php</extension>
39+
</extensions>
40+
</api>
41+
</version>
42+
</phpdocumentor>

0 commit comments

Comments
 (0)