Skip to content
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

reactphp ^0.7 || ^1.0 || ^1.1 compatibility #53

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

* NEXT VERSION
* Bump react deps to 1.1.* (@phiamo)
* combined the in 0.6.0 existing ReadableStream and WritableStream
into the now also final InputStream and OutputStream classes
* adapted the cancelTimer API change in Client

* 0.2.0 (2014-11-29)

* Bump react deps to 0.4.* (@Easen)
Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
"license": "MIT",
"require": {
"php": ">=5.4",
"evenement/evenement": "~2.0",
"react/socket": "0.4.*",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"react/socket": "^0.7 || ^1.0 || ^1.1",
phiamo marked this conversation as resolved.
Show resolved Hide resolved
"react/event-loop": "^1.0 || ^0.5",
"react/promise": "~2.0"
},
"autoload": {
"psr-4": { "React\\Stomp\\": "src" }
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.4"
"phpunit/phpunit": "^5.7 || ^6.4",
"dg/bypass-finals": "^1.1"
}
}
Loading