-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 864 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
{
"name": "kirschbaum/laravel-sns-subscription-queues",
"description": "A Laravel package that allows the queueing system to deal with the non-laravel payload when subscribed to an AWS SNS topic.",
"keywords": ["aws-sns-payload", "laravel-queue", "custom-payload"],
"authors": [
{
"name": "Nathan Kirschbaum",
"email": "[email protected]"
},
{
"name": "Alfred Nutile",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/config": "~5.1",
"illuminate/support": "~5.1",
"illuminate/queue": ">=5.1.20 <5.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"aws/aws-sdk-php": "~3.0",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": {
"Kirschbaum\\LaravelSnsSubscriptionQueues\\": "src/"
}
},
"minimum-stability": "dev"
}