-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1007 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
35
36
37
38
39
40
{
"name": "async-aws/illuminate-queue",
"description": "AsyncAws integration for Illuminate Queue.",
"license": "MIT",
"type": "library",
"keywords": [
"aws",
"async-aws",
"laravel",
"illuminate",
"sqs",
"queue"
],
"require": {
"php": "^7.2.5 || ^8.0",
"async-aws/sqs": "^1.1 || ^2.0",
"illuminate/queue": "^6.18.11 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"AsyncAws\\Illuminate\\Queue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AsyncAws\\Illuminate\\Queue\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
},
"laravel": {
"providers": [
"AsyncAws\\Illuminate\\Queue\\ServiceProvider"
]
}
}
}