-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1020 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "allenjb/queues",
"description": "Library for handling queues via either PDO MySQL or RabbitMQ (Bunny)",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"AllenJB\\Queues\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0|^8.1",
"ext-pdo": "*",
"bunny/bunny": "^0.4.1|^0.5",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ramsey/uuid": "^3.8|^4.0",
"react/promise": "^2.7"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.5|^10.5|^11.0",
"slam/phpstan-extensions": "^6.0"
}
}