This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.4 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
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
{
"name": "simplesoftwareio/simple-sqs-extended-client",
"description": "Simple SQS Extended Client is a SQS driver for Laravel that supports extended payloads beyond 256kb.",
"keywords": [
"laravel",
"simple",
"sqs",
"extended",
"driver"
],
"homepage": "https://github.com/SimpleSoftwareIO/simple-sqs-extended-client",
"license": "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "support@simplesoftware.io"
}
],
"require": {
"php": ">=8.0",
"aws/aws-sdk-php": "^3.189.0",
"league/flysystem": "~3",
"illuminate/container": "~9|~10",
"illuminate/contracts": "~9|~10",
"illuminate/filesystem": "~9|~10",
"illuminate/queue": "~9|~10",
"illuminate/support": "~9|~10"
},
"require-dev": {
"mockery/mockery": "~1",
"phpunit/phpunit": "~10",
"friendsofphp/php-cs-fixer": "^3.2"
},
"suggest": {
"laravel/vapor-core": "Allows SQS disk based storage while using Laravel Vapor."
},
"autoload": {
"psr-4": {
"SimpleSoftwareIO\\SqsDisk\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"SimpleSoftwareIO\\SqsDisk\\SqsDiskServiceProvider"
]
}
}
}