-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.37 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "aymdev/messenger-azure-bundle",
"description": "Symfony Messenger bundle for Azure Service Bus",
"type": "symfony-bundle",
"require": {
"php": "^8.4",
"ext-json": "*",
"symfony/messenger": "^6.4|^7.4|^8.0",
"symfony/http-kernel": "^6.4|^7.4|^8.0",
"symfony/dependency-injection": "^6.4|^7.4|^8.0",
"symfony/http-client": "^6.4|^7.4|^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^13.0"
},
"license": "MIT",
"authors": [
{
"name": "AymDev",
"email": "aymericmayeux@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"AymDev\\MessengerAzureBundle\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AymDev\\MessengerAzureBundle\\": "./tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}