forked from alchemy-fr/RabbitMQ-Management-API-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Eagle-Eye-Solutions/circa2022
AIR-25247: PHP 8 Support
- Loading branch information
Showing
17 changed files
with
920 additions
and
1,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ composer.phar | |
composer.lock | ||
/tests/phpunit_report | ||
/docs/source/API/API/cache/ | ||
.phpunit.result.cache | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,42 @@ | ||
{ | ||
"name": "eagle-eye-solutions/rabbitmq-management-client", | ||
"type": "library", | ||
"description": "RabbitMQ Management Plugin API Client", | ||
"keywords": ["api", "rabbitmq", "management"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Romain Neutron", | ||
"email": "imprec@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"doctrine/common": ">=2.0", | ||
"guzzlehttp/guzzle": "~6.0" | ||
}, | ||
"require-dev": { | ||
"videlalvaro/php-amqplib": "dev-master@dev", | ||
"sami/sami": "~1.0", | ||
"phpunit/phpunit": "7.0.*", | ||
"react/promise": "~1.0", | ||
"react/react": "~0.2.0", | ||
"react/curry": "~1.0" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"RabbitMQ": "src" | ||
} | ||
}, | ||
"suggest": { | ||
"react/react": "Version 0.2 to use the async client" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "0.1.x-dev" | ||
} | ||
"name": "eagle-eye-solutions/rabbitmq-management-client", | ||
"type": "library", | ||
"description": "RabbitMQ Management Plugin API Client", | ||
"keywords": [ | ||
"api", | ||
"rabbitmq", | ||
"management" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Romain Neutron", | ||
"email": "imprec@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"doctrine/common": ">=2.6.3", | ||
"guzzlehttp/guzzle": ">=6.3.3", | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"php-amqplib/php-amqplib": "dev-master", | ||
"phpunit/phpunit": ">=7.0", | ||
"react/http-client": "^0.5.9", | ||
"react/partial": "~2.0", | ||
"seregazhuk/react-promise-testing": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"RabbitMQ": "src" | ||
} | ||
}, | ||
"suggest": { | ||
"react/react": "Version 0.2 to use the async client" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "0.1.x-dev" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.