Fixed bug #68353 (QsoSSL support removed in libcurl 7.39)
[m6w6/ext-http] / package.xml
index ac62a6aa2cadf6bd7eb50c1b279427cc8938c498..eddca2610775b6d6152661174a1d3ac50913c228 100644 (file)
@@ -19,8 +19,17 @@ means for negotiation of a client's preferred content type,
 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>
@@ -28,34 +37,29 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2012-12-31</date>
+ <date>2014-10-16</date>
  <version>
-  <release>2.0.0dev</release>
-  <api>2.0.0</api>
+  <release>2.1.4dev</release>
+  <api>2.1.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.
-
-* Introduces the http namespace.
-* Message bodies have been remodeled to use PHP temporary streams instead of in-memory buffers.
-* The utterly misunderstood HttpResponse class has been reimplemented as http\Env\Response inheriting http\Message.
-* Currently, there's only one Exception class left, http\Exception.
-* Errors triggered by the extension can be configured statically by http\Object::$defaultErrorHandling or inherited http\Object->errorHandling.
-* The request ecosystem has been modularized to support different libraries, though for the moment only libcurl is supported.
+* Fixed bug #68353 (QsoSSL support removed in libcurl 7.39)
 ]]></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"/>
    <file role="src" name="config9.m4"/>
+   <file role="src" name="config.w32"/>
    
    <file role="src" name="php_http_api.h"/>
    <file role="src" name="php_http_buffer.c"/>
@@ -90,8 +94,8 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    <file role="src" name="php_http.h"/>
    <file role="src" name="php_http_header_parser.c"/>
    <file role="src" name="php_http_header_parser.h"/>
-   <file role="src" name="php_http_headers.c"/>
-   <file role="src" name="php_http_headers.h"/>
+   <file role="src" name="php_http_header.c"/>
+   <file role="src" name="php_http_header.h"/>
    <file role="src" name="php_http_info.c"/>
    <file role="src" name="php_http_info.h"/>
    <file role="src" name="php_http_message_body.c"/>
@@ -129,55 +133,148 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
      <file role="test" name="message_rr_helloworld_chunked.txt"/>
      <file role="test" name="urls.txt"/>
     </dir>
-    <file role="test" name="bug61444.phpt"/>
-    <file role="test" name="envrequestbody001.phpt"/>
-    <file role="test" name="envrequestbody002.phpt"/>
-    <file role="test" name="envrequestbody003.phpt"/>
-    <file role="test" name="envrequestfiles001.phpt"/>
-    <file role="test" name="envrequestfiles002.phpt"/>
-    <file role="test" name="envrequestform.phpt"/>
-    <file role="test" name="envrequestheader001.phpt"/>
-    <file role="test" name="envrequestquery.phpt"/>
-    <file role="test" name="envresponsecodes.phpt"/>
-    <file role="test" name="envresponseheader001.phpt"/>
-    <file role="test" name="envresponseranges001.phpt"/>
-    <file role="test" name="etag001.phpt"/>
-    <file role="test" name="filterchunked.phpt"/>
-    <file role="test" name="filterzlib.phpt"/>
-    <file role="test" name="info.phpt"/>
-    <file role="test" name="info_001.phpt"/>
-    <file role="test" name="message001.phpt"/>
-    <file role="test" name="message002.phpt"/>
-    <file role="test" name="message003.phpt"/>
-    <file role="test" name="message004.phpt"/>
-    <file role="test" name="message005.phpt"/>
-    <file role="test" name="message006.phpt"/>
-    <file role="test" name="negotiate001.phpt"/>
-    <file role="test" name="params001.phpt"/>
-    <file role="test" name="params002.phpt"/>
-    <file role="test" name="phpunit.phpt"/>
-    <file role="test" name="propertyproxy001.phpt"/>
-    <file role="test" name="querystring_001.phpt"/>
-    <file role="test" name="response001.phpt"/>
-    <file role="test" name="response002.phpt"/>
-    <file role="test" name="response003.phpt"/>
-    <file role="test" name="response004.phpt"/>
-    <file role="test" name="response005.phpt"/>
-    <file role="test" name="serialize001.phpt"/>
-    <file role="test" name="url001.phpt"/>
-   </dir>
-   <dir name="phpunit">
-    <file role="test" name="ClientRequestTest.php"/>
-    <file role="test" name="ClientTest.php"/>
-    <file role="test" name="CookieTest.php"/>
-    <file role="test" name="EncodingTest.php"/>
-    <file role="test" name="HeaderTest.php"/>
-    <file role="test" name="MessageTest.php"/>
-    <file role="test" name="MessageBodyTest.php"/>
-    <file role="test" name="ObjectTest.php"/>
-    <file role="test" name="ParamsTest.php"/>
-    <file role="test" name="QueryStringTest.php"/>
-    <file role="test" name="UrlTest.php"/>
+     <file role="test" name="bug61444.phpt"/>
+     <file role="test" name="bug66388.phpt"/>
+     <file role="test" name="bug67932.phpt"/>
+     <file role="test" name="client001.phpt"/>
+     <file role="test" name="client002.phpt"/>
+     <file role="test" name="client003.phpt"/>
+     <file role="test" name="client004.phpt"/>
+     <file role="test" name="client005.phpt"/>
+     <file role="test" name="client006.phpt"/>
+     <file role="test" name="client007.phpt"/>
+     <file role="test" name="client008.phpt"/>
+     <file role="test" name="client009.phpt"/>
+     <file role="test" name="client010.phpt"/>
+     <file role="test" name="client011.phpt"/>
+     <file role="test" name="client012.phpt"/>
+     <file role="test" name="client013.phpt"/>
+     <file role="test" name="client014.phpt"/>
+     <file role="test" name="client015.phpt"/>
+     <file role="test" name="clientrequest001.phpt"/>
+     <file role="test" name="clientrequest002.phpt"/>
+     <file role="test" name="clientrequest003.phpt"/>
+     <file role="test" name="clientrequest004.phpt"/>
+     <file role="test" name="clientresponse001.phpt"/>
+     <file role="test" name="clientresponse002.phpt"/>
+     <file role="test" name="clientresponse003.phpt"/>
+     <file role="test" name="cookie001.phpt"/>
+     <file role="test" name="cookie002.phpt"/>
+     <file role="test" name="cookie003.phpt"/>
+     <file role="test" name="cookie004.phpt"/>
+     <file role="test" name="cookie005.phpt"/>
+     <file role="test" name="cookie006.phpt"/>
+     <file role="test" name="cookie007.phpt"/>
+     <file role="test" name="cookie008.phpt"/>
+     <file role="test" name="cookie009.phpt"/>
+     <file role="test" name="cookie010.phpt"/>
+     <file role="test" name="cookie011.phpt"/>
+     <file role="test" name="cookie012.phpt"/>
+     <file role="test" name="encstream001.phpt"/>
+     <file role="test" name="encstream002.phpt"/>
+     <file role="test" name="encstream003.phpt"/>
+     <file role="test" name="encstream004.phpt"/>
+     <file role="test" name="encstream005.phpt"/>
+     <file role="test" name="encstream006.phpt"/>
+     <file role="test" name="encstream007.phpt"/>
+     <file role="test" name="encstream008.phpt"/>
+     <file role="test" name="encstream009.phpt"/>
+     <file role="test" name="envrequestbody001.phpt"/>
+     <file role="test" name="envrequestbody002.phpt"/>
+     <file role="test" name="envrequestbody003.phpt"/>
+     <file role="test" name="envrequestfiles001.phpt"/>
+     <file role="test" name="envrequestfiles002.phpt"/>
+     <file role="test" name="envrequestform.phpt"/>
+     <file role="test" name="envrequestheader001.phpt"/>
+     <file role="test" name="envrequestjson001.phpt"/>
+     <file role="test" name="envrequestjson002.phpt"/>
+     <file role="test" name="envrequestquery.phpt"/>
+     <file role="test" name="envresponse001.phpt"/>
+     <file role="test" name="envresponse002.phpt"/>
+     <file role="test" name="envresponse003.phpt"/>
+     <file role="test" name="envresponse004.phpt"/>
+     <file role="test" name="envresponse005.phpt"/>
+     <file role="test" name="envresponse006.phpt"/>
+     <file role="test" name="envresponse007.phpt"/>
+     <file role="test" name="envresponse008.phpt"/>
+     <file role="test" name="envresponse009.phpt"/>
+     <file role="test" name="envresponse010.phpt"/>
+     <file role="test" name="envresponse011.phpt"/>
+     <file role="test" name="envresponse012.phpt"/>
+     <file role="test" name="envresponse013.phpt"/>
+     <file role="test" name="envresponse014.phpt"/>
+     <file role="test" name="envresponse015.phpt"/>
+     <file role="test" name="envresponse016.phpt"/>
+     <file role="test" name="envresponsebody001.phpt"/>
+     <file role="test" name="envresponsebody002.phpt"/>
+     <file role="test" name="envresponsecodes.phpt"/>
+     <file role="test" name="envresponseheader001.phpt"/>
+     <file role="test" name="envresponseranges001.phpt"/>
+     <file role="test" name="etag001.phpt"/>
+     <file role="test" name="filterchunked.phpt"/>
+     <file role="test" name="filterzlib.phpt"/>
+     <file role="test" name="header001.phpt"/>
+     <file role="test" name="header002.phpt"/>
+     <file role="test" name="header003.phpt"/>
+     <file role="test" name="header004.phpt"/>
+     <file role="test" name="header005.phpt"/>
+     <file role="test" name="header006.phpt"/>
+     <file role="test" name="header007.phpt"/>
+     <file role="test" name="header008.phpt"/>
+     <file role="test" name="header009.phpt"/>
+     <file role="test" name="info_001.phpt"/>
+     <file role="test" name="info.phpt"/>
+     <file role="test" name="message001.phpt"/>
+     <file role="test" name="message002.phpt"/>
+     <file role="test" name="message003.phpt"/>
+     <file role="test" name="message004.phpt"/>
+     <file role="test" name="message005.phpt"/>
+     <file role="test" name="message006.phpt"/>
+     <file role="test" name="message007.phpt"/>
+     <file role="test" name="message008.phpt"/>
+     <file role="test" name="message009.phpt"/>
+     <file role="test" name="message010.phpt"/>
+     <file role="test" name="message011.phpt"/>
+     <file role="test" name="message012.phpt"/>
+     <file role="test" name="message013.phpt"/>
+     <file role="test" name="message014.phpt"/>
+     <file role="test" name="message015.phpt"/>
+     <file role="test" name="messagebody001.phpt"/>
+     <file role="test" name="messagebody002.phpt"/>
+     <file role="test" name="messagebody003.phpt"/>
+     <file role="test" name="messagebody004.phpt"/>
+     <file role="test" name="messagebody005.phpt"/>
+     <file role="test" name="messagebody006.phpt"/>
+     <file role="test" name="messagebody007.phpt"/>
+     <file role="test" name="messagebody008.phpt"/>
+     <file role="test" name="messagebody009.phpt"/>
+     <file role="test" name="messagebody010.phpt"/>
+     <file role="test" name="negotiate001.phpt"/>
+     <file role="test" name="params001.phpt"/>
+     <file role="test" name="params002.phpt"/>
+     <file role="test" name="params003.phpt"/>
+     <file role="test" name="params004.phpt"/>
+     <file role="test" name="params005.phpt"/>
+     <file role="test" name="params006.phpt"/>
+     <file role="test" name="params007.phpt"/>
+     <file role="test" name="params008.phpt"/>
+     <file role="test" name="params009.phpt"/>
+     <file role="test" name="params010.phpt"/>
+     <file role="test" name="params011.phpt"/>
+     <file role="test" name="params012.phpt"/>
+     <file role="test" name="params013.phpt"/>
+     <file role="test" name="params014.phpt"/>
+     <file role="test" name="params015.phpt"/>
+     <file role="test" name="propertyproxy001.phpt"/>
+     <file role="test" name="querystring001.phpt"/>
+     <file role="test" name="querystring002.phpt"/>
+     <file role="test" name="serialize001.phpt"/>
+     <file role="test" name="url002.phpt"/>
+     <file role="test" name="url003.phpt"/>
+     <file role="test" name="url004.phpt"/>
+     <file role="test" name="url005.phpt"/>
+     <file role="test" name="url001.phpt"/>
+     <file role="test" name="version001.phpt"/>
    </dir>
   </dir>
  </contents>
@@ -192,13 +289,13 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    <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>
@@ -209,10 +306,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
  </dependencies>
  <providesextension>http</providesextension>
  <extsrcrelease>
-  <configureoption 
-   name="with-http"
-   prompt="Enable extended HTTP support"
-   default="yes" />
   <configureoption
    name="with-http-zlib-dir"
    prompt="where to find zlib"
@@ -225,11 +318,6 @@ Extended HTTP support. Again. Keep in mind that it's got the major version 2, be
    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>