forked from tarantool/tarantool-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
231 lines (218 loc) · 7.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?xml version="1.0"?>
<package packagerversion="1.4.11" 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>Tarantool</name>
<channel>tarantool.github.io/tarantool-php/pecl</channel>
<summary>PHP extension for Tarantool</summary>
<description>
PECL PHP driver for Tarantool
Tarantool is an in-memory database and Lua application server.
This package provides PECL PHP driver for Tarantool.
</description>
<lead>
<name>Eugine Blikh</name>
<user>bigbes</user>
<email>bigbes@gmail.com</email>
<active>yes</active>
</lead>
<date>2015-02-26</date>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/bsd-license.php">BSD 2-Clause</license>
<notes>-</notes>
<contents>
<dir name="/">
<file role='src' name='config.m4'/>
<dir name='src'>
<file role='src' name='php_tarantool.h'/>
<file role='src' name='tarantool.c'/>
<file role='src' name='tarantool_manager.c'/>
<file role='src' name='tarantool_manager.h'/>
<file role='src' name='tarantool_msgpack.c'/>
<file role='src' name='tarantool_msgpack.h'/>
<file role='src' name='tarantool_proto.c'/>
<file role='src' name='tarantool_proto.h'/>
<file role='src' name='tarantool_schema.c'/>
<file role='src' name='tarantool_schema.h'/>
<file role='src' name='tarantool_tp.c'/>
<file role='src' name='tarantool_tp.h'/>
<dir name='third_party'>
<file role='src' name='base64.c'/>
<file role='src' name='base64.h'/>
<file role='src' name='mhash.h'/>
<file role='src' name='msgpuck.c'/>
<file role='src' name='msgpuck.h'/>
<file role='src' name='PMurHash.c'/>
<file role='src' name='PMurHash.h'/>
<file role='src' name='sha1.c'/>
<file role='src' name='sha1.h'/>
<file role='src' name='tp.h'/>
</dir> <!-- third_party -->
</dir> <!-- src -->
<file role='test' name='test-run.py'/>
<dir name='lib'>
<file role='test' name='__init__.py'/>
<file role='test' name='tarantool_server.py'/>
</dir> <!-- lib -->
<dir name='test'>
<file role='test' name='CreateTest.php'/>
<file role='test' name='DMLTest.php'/>
<file role='test' name='MockTest.php'/>
<file role='test' name='MsgPackTest.php'/>
<file role='test' name='phpunit'/>
<file role='test' name='phpunit.phar'/>
<dir name='shared'>
<file role='test' name='box.lua'/>
<file role='test' name='phpunit.xml'/>
<file role='test' name='tarantool.ini'/>
<file role='test' name='valgrind.sup'/>
</dir> <!-- shared -->
</dir> <!-- tests -->
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.4.0</min>
<max>6.0.0</max>
<exclude>6.0.0</exclude>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>tarantool</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.1.0</release><api>0.1.0</api></version>
<date>2016-02-26</date>
<notes>
tarantool-php 0.1.0
Fix a lot of bugs, added upsert command, added tests
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.13</release><api>0.0.13</api></version>
<date>2015-04-24</date>
<notes>
tarantool-php 0.0.13
Schema is rewritten (using mhash, not zend hash).
Batching auth+select_index+select_space (download schema) using tp.h
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.12</release><api>0.0.12</api></version>
<date>2015-04-24</date>
<notes>
tarantool-php 0.0.12
Fix couple of segfaults and memory leaks
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.11</release><api>0.0.11</api></version>
<date>2015-04-22</date>
<notes>
tarantool-php 0.0.11
Fix select error on 32bit systems, update version of rpm packages
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.10</release><api>0.0.10</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.10
Add alias for flush_schema -> flushSchema
Add eval to commands
Fix segfaults when args are empty in eval/call
Add RTree constants
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.9</release><api>0.0.9</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.9
Fix for build with pecl
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.8</release><api>0.0.8</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.8
Fixing avito segfaults, remove obsolete cleanups
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.7</release><api>0.0.7</api></version>
<date>2015-03-17</date>
<notes>
tarantool-php 0.0.7
Fixing avito segfaults
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.6</release><api>0.0.5</api></version>
<date>2015-03-08</date>
<notes>
tarantool-php 0.0.6
Fixing some segfaults
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.5</release><api>0.0.5</api></version>
<date>2014-02-09</date>
<notes>
tarantool-php 0.0.5
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.4</release><api>0.0.4</api></version>
<date>2014-08-11</date>
<notes>
tarantool-php 0.0.4
Added connection pool for PHP-FPM, fixing memleaks, fixing msgpack
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.3</release><api>0.0.3</api></version>
<date>2014-08-11</date>
<notes>
tarantool-php 0.0.3
Continue with Tests, Fixing Bugs
Adding global constants for different iterator types
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.2</release><api>0.0.2</api></version>
<date>2014-08-07</date>
<notes>
tarantool-php 0.0.2
Initial Release
</notes>
</release>
</changelog>
</package>