-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
57 lines (57 loc) · 1.7 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
54
55
56
57
{
"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": ">=8.0.2",
"aws/aws-sdk-php": "~3.0",
"illuminate/queue": ">=9.0",
"illuminate/support": ">=9.0",
"ramsey/uuid": ">=4.2.2"
},
"require-dev": {
"illuminate/notifications": ">=9.0",
"illuminate/mail": ">=9.0",
"phpunit/phpunit": "~9.3 || ~10.0",
"mockery/mockery": "~1.3",
"squizlabs/php_codesniffer": "3.*",
"shiftonelabs/codesniffer-standard": "0.*",
"vlucas/phpdotenv": "~5.4"
},
"autoload": {
"psr-4": {
"ShiftOneLabs\\LaravelSqsFifoQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShiftOneLabs\\LaravelSqsFifoQueue\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": false
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"ShiftOneLabs\\LaravelSqsFifoQueue\\LaravelSqsFifoQueueServiceProvider"
]
}
}
}