Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2017-10-25 | 950 Bytes | |
Version 2.0.0.tar.gz | 2017-10-25 | 79.7 kB | |
Version 2.0.0.zip | 2017-10-25 | 102.1 kB | |
Totals: 3 Items | 182.8 kB | 0 |
-
Upgraded RatchetPHP
0.3
to0.4
.
It changes the way to get websocket request object:
:::php
$conn->WebSocket->request
becomes:
:::php
$conn->httpRequest
Also, you get a psr7 request object. So, in exemple, to access to query parameters, do:
:::php
parse_str($conn->httpRequest->getUri()->getQuery(), $queryParameters);
$myParameter = $queryParameters['my_parameter'];
-
Upgraded
league/oauth2-server
from4.x
to6.x
It then removes the support for PHP 5.5. See league/oauth2-server
[changelog](https://github.com/thephpleague/oauth2-server/blob/master/CHANGELOG.md#602.