package.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <package packagerversion="1.9.4" 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">
  3. <name>gearman</name>
  4. <channel>pecl.php.net</channel>
  5. <summary>PHP wrapper to libgearman</summary>
  6. <description>This extension uses libgearman library to provide API for communicating with gearmand, and writing clients and workers.</description>
  7. <lead>
  8. <name>James M. Luedke</name>
  9. <user>jluedke</user>
  10. <email>contact@jamesluedke.com</email>
  11. <active>no</active>
  12. </lead>
  13. <lead>
  14. <name>Herman J. Radtke III</name>
  15. <user>hradtke</user>
  16. <email>hradtke@php.net</email>
  17. <active>yes</active>
  18. </lead>
  19. <date>2013-08-28</date>
  20. <time>22:00:00</time>
  21. <version>
  22. <release>1.1.2</release>
  23. <api>1.1.2</api>
  24. </version>
  25. <stability>
  26. <release>stable</release>
  27. <api>stable</api>
  28. </stability>
  29. <license uri="http://www.php.net/license">PHP</license>
  30. <notes>
  31. - All callbacks should have a reference pointer (Special thanks to guilhermeblanco)
  32. </notes>
  33. <contents>
  34. <dir name="/">
  35. <file name="examples/image_thumbnail_client_bg.php" role="doc" />
  36. <file name="examples/image_thumbnail_client.php" role="doc" />
  37. <file name="examples/image_thumbnail_client_task.php" role="doc" />
  38. <file name="examples/image_thumbnail_worker.php" role="doc" />
  39. <file name="examples/reverse_client_bg.php" role="doc" />
  40. <file name="examples/reverse_client.php" role="doc" />
  41. <file name="examples/reverse_client_task.php" role="doc" />
  42. <file name="examples/reverse_worker.php" role="doc" />
  43. <file name="README" role="doc" />
  44. <file name="CREDITS" role="doc" />
  45. <file name="LICENSE" role="doc" />
  46. <file name="ChangeLog" role="doc" />
  47. <file name="test_client.php" role="doc" />
  48. <file name="test_worker.php" role="doc" />
  49. <file name="config.m4" role="src" />
  50. <file name="php_gearman.c" role="src" />
  51. <file name="php_gearman.h" role="src" />
  52. <file name="tests/gearman_001.phpt" role="test" />
  53. <file name="tests/gearman_002.phpt" role="test" />
  54. </dir>
  55. </contents>
  56. <dependencies>
  57. <required>
  58. <php>
  59. <min>5.1.0</min>
  60. <max>6.0.0</max>
  61. <exclude>6.0.0</exclude>
  62. </php>
  63. <pearinstaller>
  64. <min>1.4.0b1</min>
  65. </pearinstaller>
  66. </required>
  67. </dependencies>
  68. <providesextension>gearman</providesextension>
  69. <extsrcrelease />
  70. <changelog>
  71. <release>
  72. <stability>
  73. <release>stable</release>
  74. <api>stable</api>
  75. </stability>
  76. <version>
  77. <release>1.1.2</release>
  78. <api>1.1.2</api>
  79. </version>
  80. <date>2013-08-28</date>
  81. <notes>
  82. - All callbacks should have a reference pointer (Special thanks to guilhermeblanco)
  83. </notes>
  84. </release>
  85. <release>
  86. <stability>
  87. <release>stable</release>
  88. <api>stable</api>
  89. </stability>
  90. <version>
  91. <release>1.1.1</release>
  92. <api>1.1.1</api>
  93. </version>
  94. <date>2013-01-08</date>
  95. <notes>
  96. - Updated README with new libgearman requirements.
  97. - Add explicit check for >= libgearman-1.1.0
  98. - Fixed PECL Bug 63807 (Special thanks to kgovande)
  99. - Add support for gearman_client_unique_status() method
  100. </notes>
  101. </release>
  102. <release>
  103. <stability>
  104. <release>stable</release>
  105. <api>stable</api>
  106. </stability>
  107. <version>
  108. <release>1.1.0</release>
  109. <api>1.1.0</api>
  110. </version>
  111. <date>2012-09-22</date>
  112. <notes>
  113. - libgearman v1.1.* is now required
  114. - Fixed PECL bug #60877 (no way to set client_id for a GearmanWorker)
  115. - Fixed BC breaks in libgearman v1.1.0
  116. - Make phpversion('gearman') return the real version
  117. </notes>
  118. </release>
  119. <release>
  120. <stability>
  121. <release>stable</release>
  122. <api>stable</api>
  123. </stability>
  124. <version>
  125. <release>1.0.3</release>
  126. <api>1.0.3</api>
  127. </version>
  128. <date>2012-08-04</date>
  129. <notes>
  130. - Additional fix for PECL Bug #59423 (GearmanWorker::wait and GearmanWorker::work are spamming the log with warnings.)
  131. </notes>
  132. </release>
  133. <release>
  134. <stability>
  135. <release>stable</release>
  136. <api>stable</api>
  137. </stability>
  138. <version>
  139. <release>1.0.2</release>
  140. <api>1.0.2</api>
  141. </version>
  142. <date>2012-03-05</date>
  143. <notes>
  144. - Updates for PHP 5.4
  145. </notes>
  146. </release>
  147. <release>
  148. <stability>
  149. <release>stable</release>
  150. <api>stable</api>
  151. </stability>
  152. <version>
  153. <release>1.0.1</release>
  154. <api>1.0.1</api>
  155. </version>
  156. <date>2011-12-05</date>
  157. <notes>
  158. - Fixed PECL Bug #60438 (wrong version number in php_gearman.h)
  159. </notes>
  160. </release>
  161. <release>
  162. <stability>
  163. <release>stable</release>
  164. <api>stable</api>
  165. </stability>
  166. <version>
  167. <release>1.0.0</release>
  168. <api>1.0.0</api>
  169. </version>
  170. <date>2011-12-02</date>
  171. <notes>
  172. - Fixed PECL Bug #18658 (GearmanWorker::wait and GearmanWorker::work are spamming the log with warnings.)
  173. - Fixed PECL Bug #22636 (Uncaught worker exception sends back GEARMAN_SUCCESS return code)
  174. - Fixed PECL Bug #16900 (Don&apos;t use reseved method names)
  175. - Fixed PECL Bug #59944 (Undefined symbol: gearman_client_set_server_option)
  176. - Now requires libgearman 0.21 or greater
  177. </notes>
  178. </release>
  179. <release>
  180. <stability>
  181. <release>beta</release>
  182. <api>beta</api>
  183. </stability>
  184. <version>
  185. <release>0.8.0</release>
  186. <api>0.8.0</api>
  187. </version>
  188. <date>2010-05-17</date>
  189. <notes>
  190. - Fixed PECL Bug #17114 (Return values that are class private variables are null&apos;d)
  191. - Fixed PECL Bug #22637 (GearmanJob::setReturn causes segfault)
  192. - Fixed PECL Bug #16883 (GearmanJob::sendWarning() segfaults)
  193. - Fixed PECL Bug #16884 (GearmanJob::sendData() crashes)
  194. - Fixed PECL Bug #16883 (GearmanWorker::addFunction segfaults when function name is non-string)
  195. - Fixed PECL Bug #17539 (Segmentation fault on calling error() of a fresh worker). Patch by jiayong.
  196. </notes>
  197. </release>
  198. <release>
  199. <stability>
  200. <release>beta</release>
  201. <api>beta</api>
  202. </stability>
  203. <version>
  204. <release>0.7.0</release>
  205. <api>0.7.0</api>
  206. </version>
  207. <date>2010-03-09</date>
  208. <notes>
  209. - Now builds against gearmand 0.12
  210. - Had to remove some of the low level code I was working on.
  211. </notes>
  212. </release>
  213. <release>
  214. <stability>
  215. <release>beta</release>
  216. <api>beta</api>
  217. </stability>
  218. <version>
  219. <release>0.6.0</release>
  220. <api>0.6.0</api>
  221. </version>
  222. <date>2009-10-01</date>
  223. <notes>
  224. - Fixed build issue with 5.1.x
  225. - Merged eday changes
  226. - Added wait functions, uncommented other worker functions.
  227. - Added timeout functions.
  228. - Updated function list from C library and removed free methods (should use unset).
  229. - Added stubs for new functions, fixed tests, fixed some of the existing functions from changes.
  230. </notes>
  231. </release>
  232. <release>
  233. <stability>
  234. <release>beta</release>
  235. <api>beta</api>
  236. </stability>
  237. <version>
  238. <release>0.5.0</release>
  239. <api>0.5.0</api>
  240. </version>
  241. <date>2009-07-27</date>
  242. <notes>
  243. - Fixed a bug in the task callbacks, the addtional data arg will now work as expected.
  244. - Added gearman_client_add_servers. This was adde in a recent version of libgearman.
  245. - Updates to zts for php 5.3
  246. - Replaced errno with getErrno
  247. </notes>
  248. </release>
  249. <release>
  250. <stability>
  251. <release>beta</release>
  252. <api>beta</api>
  253. </stability>
  254. <version>
  255. <release>0.4.0</release>
  256. <api>0.4.0</api>
  257. </version>
  258. <date>2009-06-30</date>
  259. <notes>
  260. - Fixed memory leak in $task object
  261. - Regened constants off of libgearman v0.7
  262. - Removed gearman_task_take_data
  263. - Added exception to task job object when created without a geaman obj arg
  264. - Fixed a bunch of places where it was possible to use objects before verifying them
  265. - Other small bug fixes
  266. </notes>
  267. </release>
  268. <release>
  269. <stability>
  270. <release>beta</release>
  271. <api>beta</api>
  272. </stability>
  273. <version>
  274. <release>0.3</release>
  275. <api>0.3</api>
  276. </version>
  277. <date>2009-05-20</date>
  278. <notes>
  279. - Initial PECL import
  280. - Reworked client/worker/task/job objects.
  281. - Added $obj-&gt;return_code() to all objects
  282. - Fixed compile issues with PHP 5.1 and 5.3
  283. </notes>
  284. </release>
  285. </changelog>
  286. </package>