-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
33 lines (33 loc) · 1.02 KB
/
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
{
"name": "alexandrubau/messenger-azure-queue-transport",
"type": "symfony-bundle",
"description": "Azure Storage Queue transport for Symfony's Messenger component.",
"keywords": ["symfony", "bundle", "messenger", "transport" ,"azure", "storage", "queue"],
"license": "MIT",
"authors": [
{
"name": "Alexandru Bau",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Abau\\MessengerAzureQueueTransport\\": "src/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"symfony/config": "^4.3|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.3|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.3|^5.0|^6.0|^7.0",
"symfony/messenger": "^4.3|^5.0|^6.0|^7.0",
"microsoft/azure-storage-queue": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0",
"symfony/var-dumper": "^4.3|^5.0|^6.0|^7.0"
},
"scripts": {
"test": "phpunit tests --testdox"
}
}