forked from cakephp/cakephp-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apigen.neon
96 lines (66 loc) · 2.14 KB
/
apigen.neon
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Source file or directory to parse
# This should be set in the CLI options
source:
# Directory where to save the generated documentation
# This should be set in the cli options
destination:
# Mask to exclude file or directory from processing
# This should be set in the cli options
exclude:
# Don't generate documentation for classes from file or directory with this mask
# This should be set in the cli options
skipDocPath:
# Don't generate documentation for classes with this name prefix
skipDocPrefix:
# List of allowed file extensions
extensions: [php]
# Character set of source files
charset: auto
# Main project namespace/package prefix
main:
# Title of generated documentation
title: CakePHP
# Google Custom Search ID
googleCseId:
# Google Custom Search label
googleCseLabel:
# Google Analytics tracking code
googleAnalytics:
# Template config file
templateConfig: '../templates/cakephp/config.neon'
# Grouping of classes
groups: auto
# List of allowed HTML tags in documentation
allowedHtml: [b, i, a, ul, ol, li, p, br, var, samp, kbd, tt]
# Element types for search input autocomplete
autocomplete: [classes, constants, functions, methods, properties, classconstants]
# Generate documentation for methods and properties with given access level
accessLevels: [public, protected]
# Generate documentation for elements marked as internal and display internal documentation parts
internal: No
# Generate documentation for PHP internal classes
php: No
# Generate tree view of classes, interfaces and exceptions
tree: Yes
# Generate documentation for deprecated classes, methods, properties and constants
deprecated: Yes
# Generate documentation of tasks
todo: No
# Generate highlighted source code files
sourceCode: Yes
# Add a link to download documentation as a ZIP archive
download: Yes
# Save a checkstyle report of poorly documented elements into a file
report: report.log
# Wipe out the destination directory first
wipeout: Yes
# Don't display scanning and generating messages
quiet: No
# Display progressbars
progressbar: Yes
# Use colors
colors: Yes
# Check for update
updateCheck: Yes
# Display additional information in case of an error
debug: Yes