-
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 8 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,19 @@ | |
**HTTPlug, the HTTP client abstraction for PHP.** | ||
|
||
|
||
## Intro | ||
|
||
HTTPlug is the predecessor of [PSR-18](http://www.php-fig.org/psr/psr-18/) | ||
HTTP Client standard built on [PSR-7](http://www.php-fig.org/psr/psr-7/) HTTP messages. | ||
Since there is an entire ecosystem built around HTTPlug which is already widely adapted, | ||
we will keep maintaining this package for the time being, | ||
but new implementations and consumers should use the PSR-18 interfaces. | ||
HTTPlug 2.x extends the PSR-18 interfaces to allow a convenient migration path, | ||
but in time it may be completely replaced by the standard. | ||
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 would put |
||
|
||
This library is the official successor of the [ivory http adapter](https://github.com/egeloen/ivory-http-adapter). | ||
|
||
|
||
## Install | ||
|
||
Via Composer | ||
|
@@ -22,14 +35,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": { | ||
|
@@ -35,7 +35,7 @@ | |
}, | ||
"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. |
||
"dev-master": "2.0.x-dev" | ||
} | ||
} | ||
} |
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/adapted/adopted/