Ilia Alshanetsky (ilia at php dot net)
Anatol Belski (ab at php dot net)
Petr Czaderna (petr at hroch dot info)
+ Remi Collet (remi at php dot net)
Benjamin Eberlei (kontakt at beberlei dot de)
David James (james82 at gmail dot com)
Thomas Landro Johnsen (thomas dot l dot johnsen at gmail dot com)
language and charset, as well as a convenient way to send any
arbitrary data with caching and resuming capabilities.
-It provides powerful request functionality, if built with CURL
-support. Parallel requests are available for PHP 5 and greater.
+It provides powerful request functionality with support for
+parallel requests.
+
+Documentation:
+v1: http://php.net/http
+v2: http://devel-m6w6.rhcloud.com/mdref/http
+
+Code Coverage:
+v1: http://dev.iworks.at/ext-http/lcov_html/ext/http/
+v2: http://dev.iworks.at/ext-http/lcov/ext/http/
+
]]></description>
<lead>
<name>Michael Wallner</name>
<email>mike@php.net</email>
<active>yes</active>
</lead>
- <date>2013-08-12</date>
+ <date>2013-11-22</date>
<version>
- <release>2.0.0RC1</release>
+ <release>2.0.0</release>
<api>2.0.0</api>
</version>
<stability>
- <release>beta</release>
- <api>beta</api>
+ <release>stable</release>
+ <api>stable</api>
</stability>
<license>BSD, revised</license>
<notes><![CDATA[
-Extended HTTP support. Again. Keep in mind that it's got the major version 2, because it's incompatible with pecl_http v1.
-
-Documentation:
-http://devel-m6w6.rhcloud.com/mdref/http
-
-Code Coverage:
-http://dev.iworks.at/ext-http/lcov/ext/http/
-
+Extended HTTP support. Again.
+
+Keep in mind that it's got the major version 2, because it's incompatible with pecl_http v1.
]]></notes>
<contents>
<dir name="/">
<file role="doc" name="LICENSE"/>
<file role="doc" name="CREDITS"/>
+ <file role="doc" name="Exceptions.txt"/>
<file role="doc" name="KnownIssues.txt"/>
<file role="doc" name="ThanksTo.txt"/>
<file role="src" name="config.m4"/>
<package>
<name>raphf</name>
<channel>pecl.php.net</channel>
- <min>0.1.0</min>
+ <min>1.0.0</min>
<providesextension>raphf</providesextension>
</package>
<package>
<name>propro</name>
<channel>pecl.php.net</channel>
- <min>0.1.0</min>
+ <min>1.0.0</min>
<providesextension>propro</providesextension>
</package>
</required>
name="with-http-libevent-dir"
prompt="where to find libevent"
default="/usr" />
- <filelist>
- <!-- install as="http.ini" name="docs/http.ini"/>
- <install as="examples/tutorial.txt" name="docs/examples/tutorial.txt"/>
- <install as="pecl/http/.php" name="lib/.php"/ -->
- </filelist>
</extsrcrelease>
<changelog />
</package>
PHP_RINIT(http),
PHP_RSHUTDOWN(http),
PHP_MINFO(http),
- PHP_HTTP_EXT_VERSION,
+ PHP_PECL_HTTP_VERSION,
STANDARD_MODULE_PROPERTIES
};
php_info_print_table_start();
php_info_print_table_header(2, "HTTP Support", "enabled");
- php_info_print_table_row(2, "Extension Version", PHP_HTTP_EXT_VERSION);
+ php_info_print_table_row(2, "Extension Version", PHP_PECL_HTTP_VERSION);
php_info_print_table_end();
php_info_print_table_start();
/* useragent */
if ((opt = php_http_option_register(registry, ZEND_STRL("useragent"), CURLOPT_USERAGENT, IS_STRING))) {
/* don't check strlen, to allow sending no useragent at all */
- ZVAL_STRING(&opt->defval, "PECL::HTTP/" PHP_HTTP_EXT_VERSION " (PHP/" PHP_VERSION ")", 0);
+ ZVAL_STRING(&opt->defval, "PECL::HTTP/" PHP_PECL_HTTP_VERSION " (PHP/" PHP_VERSION ")", 0);
}
/* resume */