-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 856 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 856 Bytes
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
{
"name": "mehr-it/lara-sqs-plain",
"description": "Receive custom/plain SQS messages in Laravel",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Christopher Mieger",
"email": "mail@mehr-it.info"
}
],
"autoload": {
"psr-4": {
"MehrIt\\LaraSqsPlain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MehrItLaraSqsPlainTest\\": "test/"
}
},
"require": {
"php": ">=7.0.0",
"aws/aws-sdk-php": "~3.0",
"mehr-it/lara-sqs-ext": "^2.8.1|^3.0",
"laravel/framework": "^5.7.7|^6.0|^7.0|^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.4|^8.5",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0"
},
"extra": {
"laravel": {
"providers": [
"MehrIt\\LaraSqsPlain\\Provider\\SqsPlainServiceProvider"
]
}
}
}