forked from mvjacobs/laravel-sns-sqs-sub-pub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 895 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
{
"name": "jonsutherland/laravel-sns-sqs-sub-pub",
"description": "A simple Laravel service provider which adds a new queue connector to handle SNS subscription queues.",
"license": "MIT",
"keywords": ["laravel", "lumen", "queue", "sns subscription", "sns publishing", "microservices", "event-driven", "aws", "sqs", "sns"],
"type": "library",
"require": {
"php": ">=7.0",
"aws/aws-sdk-php": "^3.91",
"ext-json": "*"
},
"authors": [
{
"name": "jonsutherland",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Mvjacobs\\SnsSqsPubSub\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Mvjacobs\\SnsSqsPubSub\\SnsSqsPubSubServiceProvider"
]
}
}
}