-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.doc2html.config.php
36 lines (30 loc) · 1.15 KB
/
test.doc2html.config.php
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
<?php
/**
* This configuration is only used for the test.
*/
return [
// Path where the documentation will be saved.
'output_dir' => __DIR__ . '/output',
// For each action, indicate it to standard output (STDOUT).
'verbose' => true,
// When these namespaces are excluded, they will not be taken into account by the
// tool (except when exceptions apply to the "include_classes" parameter).
'exclude_namespaces' => [
"Examples\\Exclusions"
],
// When these namespaces are included, they will be taken into account by the
// tool (except when exceptions apply to the "exclude_classes" parameter).
'include_namespaces' => [
"Examples\\Exclusions\\Inclusions"
],
// Exclude classes to avoid generate documentation, even though in the included namespace.
'exclude_classes' => [
"Examples\\Exclusions\\Inclusions\\PersonalExample"
],
// Classes to include to generate documentation.
// INFO: If the specified class is in the excluded namespace, it will still be taken
// into account in the classmap.
'include_classes' => [
"Examples\\Exclusions\\PhoneExample"
],
];