forked from maqe/laravel-sqs-fifo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 903 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
33
34
35
{
"name": "maqe/laravel-sqs-fifo",
"description": "Laravel package that enables support for SQS FIFO Queue",
"keywords": ["queue", "job", "laravel", "sqs", "fifo"],
"license": "MIT",
"authors": [
{
"name": "MAQE team",
"email": "hello@maqe.com",
"homepage": "https://www.maqe.com/"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/queue": "~5.1",
"illuminate/support": "~5.1",
"aws/aws-sdk-php": "~3.0"
},
"require-dev": {
"phpunit/phpunit" : "~4.0"
},
"autoload": {
"psr-4": {
"Maqe\\LaravelSqsFifo\\": "src/",
"Maqe\\LaravelSqsFifo\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Maqe\\LaravelSqsFifo\\LaravelSqsFifoServiceProvider"
]
}
}
}