package.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0"?>
  2. <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
  3. http://pear.php.net/dtd/tasks-1.0.xsd
  4. http://pear.php.net/dtd/package-2.0
  5. http://pear.php.net/dtd/package-2.0.xsd">
  6. <name>gearman</name>
  7. <channel>pecl.php.net</channel>
  8. <summary>PHP wrapper to libgearman</summary>
  9. <description>
  10. This extension uses libgearman library to provide API for communicating with gearmand, and writing clients and workers.
  11. </description>
  12. <lead>
  13. <name>James M. Luedke</name>
  14. <user>jluedke</user>
  15. <email>contact@jamesluedke.com</email>
  16. <active>yes</active>
  17. </lead>
  18. <date>2009-07-22</date>
  19. <version>
  20. <release>0.5.0</release>
  21. <api>0.5.0</api>
  22. </version>
  23. <stability>
  24. <release>beta</release>
  25. <api>beta</api>
  26. </stability>
  27. <license uri="http://www.php.net/license">PHP</license>
  28. <notes>
  29. - Fixed a bug in the task callbacks, the addtional data arg will now work as expected.
  30. - Added gearman_client_add_servers. This was adde in a recent version of libgearman.
  31. - Updates to zts for php 5.3
  32. - Replaced errno with getErrno
  33. </notes>
  34. <contents>
  35. <dir name="/">
  36. <file role='doc' name='EXPERIMENTAL'/>
  37. <file role='doc' name='README'/>
  38. <file role='doc' name='CREDITS'/>
  39. <file role='doc' name='LICENSE'/>
  40. <file role='doc' name='ChangeLog'/>
  41. <file role='doc' name='test_client.php'/>
  42. <file role='doc' name='test_worker.php'/>
  43. <file role='src' name='config.m4'/>
  44. <file role='src' name='php_gearman.c'/>
  45. <file role='src' name='php_gearman.h'/>
  46. <file role='test' name='gearman_001.phpt'/>
  47. <dir name="examples">
  48. <file role='doc' name='image_thumbnail_client_bg.php'/>
  49. <file role='doc' name='image_thumbnail_client.php'/>
  50. <file role='doc' name='image_thumbnail_client_task.php'/>
  51. <file role='doc' name='image_thumbnail_worker.php'/>
  52. <file role='doc' name='reverse_client_bg.php'/>
  53. <file role='doc' name='reverse_client.php'/>
  54. <file role='doc' name='reverse_client_task.php'/>
  55. <file role='doc' name='reverse_worker.php'/>
  56. </dir> <!-- examples" -->
  57. </dir> <!-- / -->
  58. </contents>
  59. <dependencies>
  60. <required>
  61. <php>
  62. <min>5.1.0</min>
  63. <max>6.0.0</max>
  64. <exclude>6.0.0</exclude>
  65. </php>
  66. <pearinstaller>
  67. <min>1.4.0b1</min>
  68. </pearinstaller>
  69. </required>
  70. </dependencies>
  71. <providesextension>gearman</providesextension>
  72. <extsrcrelease>
  73. </extsrcrelease>
  74. <changelog>
  75. <release>
  76. <stability><release>beta</release><api>beta</api></stability>
  77. <version><release>0.5.0</release><api>0.5.0</api></version>
  78. <date>2009-07-22</date>
  79. <notes>
  80. - Fixed a bug in the task callbacks, the addtional data arg will now work as expected.
  81. - Added gearman_client_add_servers. This was adde in a recent version of libgearman.
  82. - Updates to zts for php 5.3
  83. - Replaced errno with getErrno
  84. </notes>
  85. </release>
  86. <release>
  87. <stability><release>beta</release><api>beta</api></stability>
  88. <version><release>0.4.0</release><api>0.4.0</api></version>
  89. <date>2009-06-30</date>
  90. <notes>
  91. - Fixed memory leak in $task object
  92. - Regened constants off of libgearman v0.7
  93. - Removed gearman_task_take_data
  94. - Added exception to task job object when created without a geaman obj arg
  95. - Fixed a bunch of places where it was possible to use objects before verifying them
  96. - Other small bug fixes
  97. </notes>
  98. </release>
  99. <release>
  100. <stability><release>beta</release><api>beta</api></stability>
  101. <version><release>0.3</release><api>0.3</api></version>
  102. <date>2009-05-20</date>
  103. <notes>
  104. - Initial PECL import
  105. - Reworked client/worker/task/job objects.
  106. - Added $obj->return_code() to all objects
  107. - Fixed compile issues with PHP 5.1 and 5.3
  108. </notes>
  109. </release>
  110. </changelog>
  111. </package>