mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-31 06:28:15 +02:00
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
{
|
|
"name": "clue/mq-react",
|
|
"description": "Mini Queue, the lightweight in-memory message queue to concurrently do many (but not too many) things at once, built on top of ReactPHP",
|
|
"keywords": ["Message Queue", "Mini Queue", "job", "message", "worker", "queue", "rate limit", "throttle", "concurrency", "ReactPHP", "async"],
|
|
"homepage": "https://github.com/clue/reactphp-mq",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Christian Lück",
|
|
"email": "christian@clue.engineering"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3",
|
|
"react/promise": "^3 || ^2.2.1 || ^1.2.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
|
|
"react/async": "^4 || ^3 || ^2",
|
|
"react/event-loop": "^1.2",
|
|
"react/http": "^1.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Clue\\React\\Mq\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Clue\\Tests\\React\\Mq\\": "tests/"
|
|
}
|
|
}
|
|
}
|