Skip to content

Commit

Permalink
- Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Nov 8, 2019
1 parent a8025a3 commit c0bd033
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 87 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ checks:
build:
environment:
php:
version: 7.0.7
version: 7.2
variables:
NETTE: default

Expand Down
18 changes: 0 additions & 18 deletions .travis.composer.php

This file was deleted.

9 changes: 2 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ language: php

env:
- NETTE=default
- NETTE=~3.0.0
- NETTE=~2.4.0

php:
- 7.0

matrix:
allow_failures:
- env: NETTE=~3.0.0
- 7.2

addons:
apt:
Expand All @@ -26,7 +22,6 @@ before_script:
- sh -c "cd php-zmq && phpize && ./configure && make --silent && sudo make install"
- echo "extension=zmq.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer self-update
- php .travis.composer.php
- composer install --no-interaction --prefer-source --dev

script:
Expand Down
134 changes: 73 additions & 61 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,75 @@
{
"name" : "ipub/websockets-zmq",
"type" : "library",
"description" : "ZeroMQ pusher & consumer implementation for ipub/websockets-wamp",
"keywords" : ["nette", "websockets", "zmq", "zeromq", "ipub", "ipublikuj", "framework", "tools"],
"homepage" : "https://github.com/iPublikuj/websockets-zmq",
"license" : ["GPL-2.0", "GPL-3.0"],

"authors": [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "http://www.ipublikuj.eu/"
}
],

"support":{
"email" :"support@ipublikuj.eu",
"issues" :"https://github.com/iPublikuj/websockets-zmq/issues"
},

"extra": {
"ipub" : {
"configuration" : {
"extensions" : {
"webSocketsZMQ" : "IPub\\WebSocketsZMQ\\DI\\WebSocketsZMQExtension"
}
}
}
},

"require": {
"php" : ">=7.0.0",

"react/zmq": "~0.3.0",

"ipub/websockets-wamp" : "~1.0.2",

"psr/log" : "~1.0"
},

"require-dev": {
"nette/bootstrap" : "~2.4",
"nette/mail" : "~2.4",
"nette/robot-loader" : "~2.4",
"nette/safe-stream" : "~2.3",
"nette/tester" : "@dev",

"tracy/tracy" : "@dev",

"pds/skeleton" : "^1.0"
},

"suggest": {
"ext-zmq": "*"
},

"autoload": {
"psr-0": {
"IPub\\WebSocketsZMQ\\": "src/"
}
}
"name" : "ipub/websockets-zmq",
"type" : "library",
"description" : "ZeroMQ pusher & consumer implementation for ipub/websockets-wamp",
"keywords" : [
"nette",
"websockets",
"zmq",
"zeromq",
"ipub",
"ipublikuj",
"framework",
"tools"
],
"homepage" : "https://github.com/iPublikuj/websockets-zmq",
"license" : [
"GPL-2.0",
"GPL-3.0"
],

"authors" : [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "http://www.ipublikuj.eu/"
}
],

"support" : {
"email" : "support@ipublikuj.eu",
"issues" : "https://github.com/iPublikuj/websockets-zmq/issues"
},

"extra" : {
"ipub" : {
"configuration" : {
"extensions" : {
"webSocketsZMQ" : "IPub\\WebSocketsZMQ\\DI\\WebSocketsZMQExtension"
}
}
}
},

"require" : {
"php" : ">=7.2.0",

"react/zmq" : "~0.3",

"psr/log" : "~1.0",

"ipub/websockets-wamp" : "~1.1.0"
},

"require-dev" : {
"nette/bootstrap" : "~2.4 || ~3.0",
"nette/mail" : "~2.4 || ~3.0",
"nette/robot-loader" : "~2.4 || ~3.0",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.3",

"tracy/tracy" : "~2.4",

"pds/skeleton" : "~1.0"
},

"suggest" : {
"ext-zmq" : "*"
},

"autoload" : {
"psr-0" : {
"IPub\\WebSocketsZMQ\\" : "src/"
}
}
}

0 comments on commit c0bd033

Please sign in to comment.