-
Notifications
You must be signed in to change notification settings - Fork 1
/
apigen.neon
55 lines (43 loc) · 1.13 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
parameters:
# string[], passed as arguments in CLI, e.g. ['src']
paths: [
'modules/',
'system/'
]
# string[], --include in CLI, included files mask, e.g. ['*.php']
include: ['*.php']
# string[], --exclude in CLI, excluded files mask, e.g. ['tests/**']
exclude: [
'**/Classes/**',
'managers/licensing',
'managers/**',
'*/Dropbox/**',
'*/Google/**',
'OAuthClient/**',
'Licensing/**'
'WebAuthn/**'
]
# - managers/licensing
# - */managers/
# - */Dropbox/
# - */Google/
# - */OAuthClient/
# - /Licensing/
# bool, should protected members be excluded?
excludeProtected: true
# bool, should private members be excluded?
excludePrivate: true
# string[], list of tags used for excluding class-likes and members
excludeTagged: ['internal']
# string, --output in CLI
outputDir: 'docs/api'
# string | null, --theme in CLI
themeDir: null
# string, --title in CLI
title: 'Afterlogic Aurora Corporate 9'
# string, --base-url in CLI
baseUrl: ''
# int, --workers in CLI, number of processes that will be forked for parallel rendering
workerCount: 1
# string, --memory-limit in CLI
memoryLimit: '512M'