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

Upgrade react/socket to ^1.1 #51

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ before_script:
sudo service rabbitmq-server start;
fi
- if [ "$STOMP_PROVIDER" = 'activemq' ]; then
sudo apt install activemq tree;
sudo apt update;
sudo apt install activemq;
sudo cp tests/utils/activemq.xml /etc/activemq/instances-available/main/;
sudo ln -s /etc/activemq/instances-available/main /etc/activemq/instances-enabled/main;
sudo service activemq start;
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"require": {
"php": ">=5.4",
"evenement/evenement": "~2.0",
"react/socket": "0.4.*",
"react/promise": "~2.0"
"react/socket": "^1.1",
"react/promise": "^2.2.1"
},
"autoload": {
"psr-4": { "React\\Stomp\\": "src" }
Expand Down
Loading