forked from shiftonelabs/laravel-sqs-fifo-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
{
"name": "shiftonelabs/laravel-sqs-fifo-queue",
"description": "Adds a Laravel queue driver for Amazon SQS FIFO queues.",
"keywords": ["laravel", "lumen", "illuminate", "queue", "sqs", "fifo", "aws"],
"homepage": "https://github.com/shiftonelabs/laravel-sqs-fifo-queue",
"license": "MIT",
"authors": [
{
"name": "Patrick Carlo-Hickman",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/shiftonelabs/laravel-sqs-fifo-queue/issues",
"source": "https://github.com/shiftonelabs/laravel-sqs-fifo-queue"
},
"require": {
"php": ">=5.5.0",
"aws/aws-sdk-php": "~3.0",
"illuminate/queue": ">=4.1",
"illuminate/support": ">=4.1",
"ramsey/uuid": "~4.0"
},
"require-dev": {
"illuminate/encryption": ">=4.1",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "2.*",
"shiftonelabs/codesniffer-standard": "0.*",
"vlucas/phpdotenv": "~2.2"
},
"autoload": {
"psr-4": {
"ShiftOneLabs\\LaravelSqsFifoQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShiftOneLabs\\LaravelSqsFifoQueue\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"ShiftOneLabs\\LaravelSqsFifoQueue\\LaravelSqsFifoQueueServiceProvider"
]
}
}
}