Skip to content

Commit

Permalink
Merge branch '1.0.0-beta3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Jul 31, 2012
2 parents 69a97af + 397c734 commit 9dcdf43
Show file tree
Hide file tree
Showing 47 changed files with 1,933 additions and 412 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -5,6 +5,12 @@ The Aura HTTP package provides objects to build and send HTTP requests and
responses, including `multipart/form-data` requests, with streaming of file
resources when using the `curl` adapter.

This package is compliant with [PSR-0][], [PSR-1][], and [PSR-2][]. If you
notice compliance oversights, please send a patch via pull request.

[PSR-0]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md
[PSR-1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md
[PSR-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md

Getting Started
===============
Expand Down
38 changes: 33 additions & 5 deletions composer.json
@@ -1,23 +1,51 @@
{
"name": "Aura/Http",
"name": "aura/http",
"type": "library",
"description": "The Aura HTTP package provides objects to build and send HTTP responses from the server to the client.",
"description": "The Aura HTTP package provides objects to build and send HTTP requests and responses.",
"keywords": [
"http",
"http response",
"response"
"response",
"http request",
"request",
"http client",
"client",
"http transport",
"transport"
],
"homepage": "http://auraphp.github.com/Aura.Http",
"version": "1.0.0-dev",
"version": "1.0.0-beta3",
"time": "2012-07-30",
"license": "BSD",
"authors": [
{
"name": "Aura Contributors",
"name": "Aura.Http Contributors",
"homepage": "https://github.com/auraphp/Aura.Http/contributors"
},
{
"name": "Paul M. Jones",
"email": "pmjones88@gmail.com",
"homepage": "http://paul-m-jones.com"
},
{
"name": "Galactic Void",
"email": "",
"homepage": "https://github.com/galactic-void"
},
{
"name": "Hari KT",
"email": "kthari85@gmail.com",
"homepage": "http://harikt.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Aura\\Http": "src/"
}
}
}
7 changes: 6 additions & 1 deletion meta/changes.txt
@@ -1 +1,6 @@
- no changes, making a release only so that automated docs get updated
- Now includes Request, Adapter, and Transport mechanisms, making it a full-
fledged HTTP library.

- Cookies and Headers are now represented by objects, not arrays.

- Modified for PSR-1 and 2 compliance.
2 changes: 1 addition & 1 deletion meta/description.txt
@@ -1 +1 @@
The Aura HTTP package provides objects to build and send HTTP responses from the server to the client.
The Aura HTTP package provides objects to build and send HTTP requests and responses.
2 changes: 1 addition & 1 deletion meta/keywords.csv
@@ -1 +1 @@
http, http response, response
http, http response, response, http request, request, http client, client, http transport, transport
2 changes: 1 addition & 1 deletion meta/summary.txt
@@ -1 +1 @@
Build and send HTTP responses
Build and send HTTP requests and responses
7 changes: 5 additions & 2 deletions src/Aura/Http/Adapter/AdapterInterface.php
Expand Up @@ -3,6 +3,8 @@
*
* This file is part of the Aura project for PHP.
*
* @package Aura.Http
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
Expand All @@ -24,12 +26,13 @@ interface AdapterInterface
*
* Execute the request.
*
* @param Aura\Http\Request $request The request.
* @param Request $request The request.
*
* @param Aura\Http\Transport\Options $options The transport options.
* @param Options $options The transport options.
*
* @return Aura\Http\Response\Stack A stack of responses.
*
*/
public function exec(Request $request, Options $options);
}

0 comments on commit 9dcdf43

Please sign in to comment.