-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.xml
104 lines (104 loc) · 4.16 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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.5" 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>binpack</name>
<channel>pecl.php.net</channel>
<summary>binpack for PHP.</summary>
<description>The php implementation for BINPACK.</description>
<lead>
<name>Huqiu Liao</name>
<user>srain</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2014-08-12</date>
<time>00:41:03 CST</time>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- add version info
- fix bug: array index which is lower than 0 will not encode correctly in i386
- fix bug: value of integer greater than LONG_MAX using BIN_LONG_MAX instead of LONG_MAX
- Make the tests passed on both i386 and x86_64. Thank you remicollet.
</notes>
<contents>
<dir name="/">
<file name="tests/001.phpt" role="test" />
<file name="tests/test-bool.phpt" role="test" />
<file name="tests/test-array-map.phpt" role="test" />
<file name="tests/test-array-list.phpt" role="test" />
<file name="tests/test-null.phpt" role="test" />
<file name="tests/test-double.phpt" role="test" />
<file name="tests/test-array-mix.phpt" role="test" />
<file name="tests/test-blob.phpt" role="test" />
<file name="tests/test-array-ref.phpt" role="test" />
<file name="tests/test-integer.phpt" role="test" />
<file name="tests/test-string.phpt" role="test" />
<file name="bench/bench.php" role="test" />
<file name="README.md" role="doc" />
<file name="LICENSE" role="doc" />
<file name="CREDITS" role="doc" />
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="bin_pack.c" role="src" />
<file name="bin_pack.h" role="src" />
<file name="php_binpack.h" role="src" />
<file name="php_binpack.c" role="src" />
<file name="bin_pack_debug.h" role="src" />
<file name="bin_pack_def.h" role="src" />
<file name="bin_pack_endian.h" role="src" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.2.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>binpack</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2014-08-12</date>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
- add version info
- fix bug: array index which is lower than 0 will not encode correctly in i386
- fix bug: value of integer greater than LONG_MAX using BIN_LOG_MAX instead of LONG_MAX
- Make the tests passed on both i386 and x86_64. Thank you remicollet.
</notes>
</release>
<release>
<date>2014-07-25</date>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- first release
</notes>
</release>
</changelog>
</package>