File tree Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,10 @@ typings/
81
81
# next.js build output
82
82
.next
83
83
84
+ # ignore phpdoc cache directories
85
+ .phpdoc /
86
+ docs /
87
+
84
88
# ##> symfony/framework-bundle ###
85
89
/app /.env.local
86
90
/app /.env.local.php
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ typings/
90
90
# next.js build output
91
91
.next
92
92
93
+ # ignore phpdoc cache directories
94
+ .phpdoc /
95
+
93
96
# Custom files
94
97
.docker /
95
98
build.date
Original file line number Diff line number Diff line change 23
23
24
24
See GitHub Pages at [ monogramm.github.io/vue-symfony-starter] ( https://monogramm.github.io/vue-symfony-starter/ ) .
25
25
26
+ You can generate the PHP documentation using PHPDocumentor:
27
+
28
+ ``` bash
29
+ docker run --rm -v " ${PWD} :/data" phpdoc/phpdoc:3 run
30
+ ```
31
+
26
32
## :chart_with_upwards_trend : Changes
27
33
28
34
All notable changes to this project will be documented in [ CHANGELOG] ( ./CHANGELOG.md ) file.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpdocumentor
3
+ configVersion =" 3.0"
4
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
+ xmlns =" https://www.phpdoc.org"
6
+ xsi : noNamespaceSchemaLocation =" https://docs.phpdoc.org/latest/phpdoc.xsd"
7
+ >
8
+ <paths >
9
+ <output >docs/php</output >
10
+ <cache >.phpdoc/cache</cache >
11
+ </paths >
12
+ <version number =" latest" >
13
+ <api >
14
+ <source dsn =" ." >
15
+ <path >app</path >
16
+ </source >
17
+ <ignore hidden =" true" symlinks =" true" >
18
+ <path >app/tests/**/*</path >
19
+ <path >app/vendor/**/*</path >
20
+ <path >app/node_modules/**/*</path >
21
+ <path >app/var/**/*</path >
22
+ <path >app/public/build/**/*</path >
23
+ <path >app/bin/**/*</path >
24
+ <path >.phpdoc/**/*</path >
25
+ </ignore >
26
+ <markers >
27
+ <marker >TODO</marker >
28
+ <marker >FIXME</marker >
29
+ <marker >XXX</marker >
30
+ </markers >
31
+ </api >
32
+ </version >
33
+ </phpdocumentor >
You can’t perform that action at this time.
0 commit comments