-
Notifications
You must be signed in to change notification settings - Fork 39
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
Prepare release #149
Conversation
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.
thanks. commented on some details.
README.md
Outdated
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
s/served as a reference//
## 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 comment
The reason will be displayed to describe this comment to others. Learn more.
i'd love to keep mentioning PSR-7 somewhere in the intro
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-2.x": "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.
we should alias master to 2.x-dev when this is merged.
README.md
Outdated
|
||
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) | ||
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 comment
The 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 ..."
README.md
Outdated
@@ -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 comment
The 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.
Thanks for the review @dbu, I made the requested changes. |
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.
sorry, some further nitpicks.
README.md
Outdated
|
||
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, |
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/
README.md
Outdated
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 comment
The reason will be displayed to describe this comment to others. Learn more.
i would put .
on the line above and then say "In the long term, we expect PSR-18 to completely replace the need for Httplug."
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.
thanks!
now we need to wait for psr-18 to be tagged 1.0.0, i guess? |
Yeah. I think @Nyholm has access to it from our side, but I don't think there are any blockers there. |
c698379
to
4db7163
Compare
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.
Excellent
Closes #139