forked from theseer/phpdox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
110 lines (109 loc) · 3.49 KB
/
package.xml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.10" version="2.0"
xmlns="http://pear.php.net/dtd/package-2.0"
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>phpDox</name>
<channel>pear.netpirates.net</channel>
<summary>A php Documentation generation framework and tool</summary>
<description>A fast Documentation generator for PHP Code using standard technology (SRC, DOCBLOCK, XML and XSLT) with event based processing</description>
<lead>
<name>Arne Blankerts</name>
<user>theseer</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-02-28</date>
<version>
<release>0.4.99</release>
<api>0.4.99</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>BSD License</license>
<notes>http://github.com/theseer/phpdox/tree</notes>
<contents>
<!-- The main contents is dynamically added by the package builder task -->
<dir name="/">
<file baseinstalldir="/" name="phpdox.php" role="script">
<tasks:replace from="%development%" to="version" type="package-info" />
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config"/>
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config" />
</file>
<file baseinstalldir="/" name="phpdox.bat" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config" />
<tasks:replace from="@bin_dir@" to="bin_dir" type="pear-config" />
</file>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.3</min>
</php>
<pearinstaller>
<min>1.9.2</min>
</pearinstaller>
<package>
<name>DirectoryScanner</name>
<channel>pear.netpirates.net</channel>
<min>1.1.0</min>
</package>
<package>
<name>fDOMDocument</name>
<channel>pear.netpirates.net</channel>
<min>1.2.3</min>
</package>
<package>
<name>fXSL</name>
<channel>pear.netpirates.net</channel>
<min>1.0.4</min>
</package>
<package>
<name>ConsoleTools</name>
<channel>components.ez.no</channel>
<min>1.6</min>
</package>
<package>
<name>PHPParser</name>
<channel>nikic.github.com/pear</channel>
<min>0.9.3</min>
</package>
<extension>
<name>tokenizer</name>
</extension>
<extension>
<name>dom</name>
</extension>
<extension>
<name>xsl</name>
</extension>
<extension>
<name>iconv</name>
</extension>
</required>
</dependencies>
<phprelease>
<installconditions>
<os>
<name>windows</name>
</os>
</installconditions>
<filelist>
<install as="phpdox" name="phpdox.php" />
<install as="phpdox.bat" name="phpdox.bat" />
</filelist>
</phprelease>
<phprelease>
<filelist>
<install as="phpdox" name="phpdox.php" />
<ignore name="phpdox.bat" />
</filelist>
</phprelease>
</package>