forked from dusterio/laravel-plain-sqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.12 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
34
35
36
37
38
39
40
41
42
43
{
"name": "dusterio/laravel-plain-sqs",
"type": "library",
"description": "Custom SQS connector for Laravel that supports custom format JSON",
"keywords": [
"php",
"laravel",
"lumen",
"sqs",
"aws"
],
"homepage": "https://github.com/dusterio/laravel-plain-sqs",
"license": "MIT",
"authors": [
{
"name": "Denis Mysenko",
"email": "[email protected]",
"homepage": "https://www.mysenko.com"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/queue": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/bus": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"aws/aws-sdk-php": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*|^9.5.10|^10.0"
},
"autoload": {
"psr-4": {
"Dusterio\\PlainSqs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dusterio\\PlainSqs\\Integrations\\LaravelServiceProvider"
]
}
}
}