forked from cdn77/RabbitMQBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.59 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "cdn77/rabbitmq-bundle",
"description": "RabbitMQ Symfony bundle for BunnyPHP.",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"bunny/bunny": "^0.5.0",
"myclabs/php-enum": "^1.8.4",
"react/promise": "^2.0",
"symfony/config": "^5.0 || ^6.0",
"symfony/console": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/framework-bundle": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.1.5 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0"
},
"require-dev": {
"cdn77/coding-standard": "^6.0",
"ergebnis/composer-normalize": "^2.42",
"infection/infection": "^0.28.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.10.66",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-strict-rules": "^1.5.2",
"phpunit/phpunit": "^9.5",
"shipmonk/composer-dependency-analyser": "^1.4"
},
"autoload": {
"psr-4": {
"Cdn77\\RabbitMQBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cdn77\\RabbitMQBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"composer normalize"
]
}
}