123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?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>gearman</name>
- <channel>pecl.php.net</channel>
- <summary>PHP wrapper to libgearman</summary>
- <description>
- This extension uses libgearman library to provide API for communicating with gearmand, and writing clients and workers.
- </description>
- <lead>
- <name>James M. Luedke</name>
- <user>jluedke</user>
- <email>contact@jamesluedke.com</email>
- <active>yes</active>
- </lead>
- <date>2009-07-22</date>
- <version>
- <release>0.5.0</release>
- <api>0.5.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.php.net/license">PHP</license>
- <notes>
- - Fixed a bug in the task callbacks, the addtional data arg will now work as expected.
- - Added gearman_client_add_servers. This was adde in a recent version of libgearman.
- - Updates to zts for php 5.3
- - Replaced errno with getErrno
- </notes>
- <contents>
- <dir name="/">
- <file role='doc' name='EXPERIMENTAL'/>
- <file role='doc' name='README'/>
- <file role='doc' name='CREDITS'/>
- <file role='doc' name='LICENSE'/>
- <file role='doc' name='ChangeLog'/>
- <file role='doc' name='test_client.php'/>
- <file role='doc' name='test_worker.php'/>
- <file role='src' name='config.m4'/>
- <file role='src' name='php_gearman.c'/>
- <file role='src' name='php_gearman.h'/>
- <file role='test' name='gearman_001.phpt'/>
- <dir name="examples">
- <file role='doc' name='image_thumbnail_client_bg.php'/>
- <file role='doc' name='image_thumbnail_client.php'/>
- <file role='doc' name='image_thumbnail_client_task.php'/>
- <file role='doc' name='image_thumbnail_worker.php'/>
- <file role='doc' name='reverse_client_bg.php'/>
- <file role='doc' name='reverse_client.php'/>
- <file role='doc' name='reverse_client_task.php'/>
- <file role='doc' name='reverse_worker.php'/>
- </dir> <!-- examples" -->
- </dir> <!-- / -->
- </contents>
- <dependencies>
- <required>
- <php>
- <min>5.1.0</min>
- <max>6.0.0</max>
- <exclude>6.0.0</exclude>
- </php>
- <pearinstaller>
- <min>1.4.0b1</min>
- </pearinstaller>
- </required>
- </dependencies>
- <providesextension>gearman</providesextension>
- <extsrcrelease>
- </extsrcrelease>
- <changelog>
- <release>
- <stability><release>beta</release><api>beta</api></stability>
- <version><release>0.5.0</release><api>0.5.0</api></version>
- <date>2009-07-22</date>
- <notes>
- - Fixed a bug in the task callbacks, the addtional data arg will now work as expected.
- - Added gearman_client_add_servers. This was adde in a recent version of libgearman.
- - Updates to zts for php 5.3
- - Replaced errno with getErrno
- </notes>
- </release>
- <release>
- <stability><release>beta</release><api>beta</api></stability>
- <version><release>0.4.0</release><api>0.4.0</api></version>
- <date>2009-06-30</date>
- <notes>
- - Fixed memory leak in $task object
- - Regened constants off of libgearman v0.7
- - Removed gearman_task_take_data
- - Added exception to task job object when created without a geaman obj arg
- - Fixed a bunch of places where it was possible to use objects before verifying them
- - Other small bug fixes
- </notes>
- </release>
- <release>
- <stability><release>beta</release><api>beta</api></stability>
- <version><release>0.3</release><api>0.3</api></version>
- <date>2009-05-20</date>
- <notes>
- - Initial PECL import
- - Reworked client/worker/task/job objects.
- - Added $obj->return_code() to all objects
- - Fixed compile issues with PHP 5.1 and 5.3
- </notes>
- </release>
- </changelog>
- </package>
|