-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.conf.php
37 lines (27 loc) · 1.41 KB
/
test.conf.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 is the example Pelzini processor configuration file
* For more information about configuration, see
* https://github.com/Karmabunny/pelzini
*/
/* This should be the name of your project */
$dpgProjectName = 'Pelzini Tests';
/* A unique code per project, to allow multiple projects per database */
$dpgProjectCode = 'pelzini-test';
/* This should be the terms that your documentation is made available under
It will be shown in the footer of the viewer */
$dpgLicenseText = 'Documentation is made available under the
<a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.';
/* List the transformers here. Transformers alter the parsed files before outputting */
$dpgTransformers[] = new QualityCheckTransformer();
/* List the outputters here. Outputters save the parsed files to a database or an output file */
$dpgOutputters[] = new MysqlOutputter('pelzini', 'password', 'localhost', 'pelzini');
/* Multiple output targets can be specified */
//$dpgOutputters[] = new SqliteOutputter('../../pelzini.sqlite');
/* This is the base directory that the parsing of your application should take place */
$dpgBaseDirectory = 'test';
/* These are directories that should be excluded from the processing. */
$dpgExcludeDirectories = array();
/* These are the Javadoc tags that should cascade from their parent */
$dpgCascaseDocblockTags[] = '@author';
$dpgCascaseDocblockTags[] = '@since';