forked from sebastianbergmann/phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
86 lines (86 loc) · 2.31 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
<?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>PHPUnit</name>
<channel>pear.phpunit.de</channel>
<summary>The PHP Unit Testing framework.</summary>
<description>The PHP Unit Testing framework.</description>
<lead>
<name>Sebastian Bergmann</name>
<user>sb</user>
<email>sebastian@phpunit.de</email>
<active>yes</active>
</lead>
<date>2014-MM-DD</date>
<version>
<release>4.1.0</release>
<api>4.1.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>The BSD 3-Clause License</license>
<notes>http://github.com/sebastianbergmann/phpunit/blob/master/README.md</notes>
<contents>
<dir name="/">
<file baseinstalldir="/" name="LICENSE" role="doc" />
<file baseinstalldir="/" name="README.md" role="doc" />
<file baseinstalldir="/" name="phpunit.phar" role="script" />
<file baseinstalldir="/" name="phpunit.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.4</min>
</pearinstaller>
<extension>
<name>dom</name>
</extension>
<extension>
<name>pcre</name>
</extension>
<extension>
<name>tokenizer</name>
</extension>
</required>
<optional>
<extension>
<name>json</name>
</extension>
<extension>
<name>simplexml</name>
</extension>
</optional>
</dependencies>
<phprelease>
<installconditions>
<os>
<name>windows</name>
</os>
</installconditions>
<filelist>
<install as="phpunit" name="phpunit.phar" />
<install as="phpunit.bat" name="phpunit.bat" />
</filelist>
</phprelease>
<phprelease>
<filelist>
<install as="phpunit" name="phpunit.phar" />
<ignore name="phpunit.bat" />
</filelist>
</phprelease>
</package>