-
Notifications
You must be signed in to change notification settings - Fork 39
Prepare release #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare release #149
Changes from 7 commits
f556f62
8206151
b65f81b
553478d
e3b49c7
89e11fc
ad519a2
4c5db9f
9f1ea9c
4db7163
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,15 @@ | |
**HTTPlug, the HTTP client abstraction for PHP.** | ||
|
||
|
||
## Intro | ||
|
||
HTTPlug served as a reference is the predecessor of [PSR-18](https://github.com/php-fig/fig-standards/blob/master/accepted/http-client/http-client.md) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and we should mention that version 2 of httplug extends the psr-18 interfaces to allow a convenient migration path. |
||
HTTP Client standard. Since there is an entire ecosystem built around HTTPlug and since it's already widely adapted, | ||
this package stays available, but new implementations and consumers should use the PSR-18 interfaces. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could we say instead "we will keep maintaining this package for the time being, but new ..." |
||
|
||
This library is the official successor of the [ivory http adapter](https://github.com/egeloen/ivory-http-adapter). | ||
|
||
|
||
## Install | ||
|
||
Via Composer | ||
|
@@ -22,14 +31,6 @@ $ composer require php-http/httplug | |
``` | ||
|
||
|
||
## Intro | ||
|
||
This is the contract package for HTTP Client. | ||
Use it to create HTTP Clients which are interoperable and compatible with [PSR-7](http://www.php-fig.org/psr/psr-7/). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i'd love to keep mentioning PSR-7 somewhere in the intro |
||
|
||
This library is the official successor of the [ivory http adapter](https://github.com/egeloen/ivory-http-adapter). | ||
|
||
|
||
## Documentation | ||
|
||
Please see the [official documentation](http://docs.php-http.org). | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
"require": { | ||
"php": "^7.0", | ||
"psr/http-message": "^1.0", | ||
"psr/http-client": "^0.3", | ||
"psr/http-client": "^1.0", | ||
"php-http/promise": "^1.0" | ||
}, | ||
"require-dev": { | ||
|
@@ -32,10 +32,5 @@ | |
"scripts": { | ||
"test": "vendor/bin/phpspec run", | ||
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-2.x": "2.0.x-dev" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should alias master to 2.x-dev when this is merged. |
||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/served as a reference//