-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpdoc.xml
More file actions
44 lines (41 loc) · 1.46 KB
/
phpdoc.xml
File metadata and controls
44 lines (41 loc) · 1.46 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Non so come usare l'opzione per definire alcuni 'custom tags' all'interno di questo file xml di configurazione -->
<!-- http://manual.phpdoc.org/HTMLSmartyConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#using.command-line.customtags -->
<!-- L'uso da riga di comando è il seguente: -->
<!-- "phpdoc -ct mytag,anothertag" -->
<!-- Vedi: http://phpdoc.org/docs/latest/references/configuration.html -->
<phpdoc>
<!-- <title>Titolo</title> -->
<parser>
<target>./docs/phpdoc</target>
<!-- Se definisco l'encoding ho dei problemi. Bug ? -->
<!-- <encoding>utf8</encoding> -->
<markers>
<item>TODO</item>
<item>FIXME</item>
</markers>
<extensions>
<extension>php</extension>
</extensions>
</parser>
<transformer>
<target>../docs/phpdoc</target>
</transformer>
<transformations>
<template name="clean" />
</transformations>
<files>
<directory>./src</directory>
<!-- <file>test.php</file> -->
<ignore-hidden>true</ignore-hidden>
<ignore-symlinks>true</ignore-symlinks>
<ignore>./vendor/*</ignore>
</files>
<!-- <logging> -->
<!-- <level>debug</level> -->
<!-- <paths> -->
<!-- <default>{APP_ROOT}/doc/log/{DATE}.log</default> -->
<!-- <errors>{APP_ROOT}/doc/log/{DATE}.errors.log</errors> -->
<!-- </paths> -->
<!-- </logging> -->
</phpdoc>