forked from dusterio/laravel-aws-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (43 loc) · 1.2 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
{
"name": "charliepage88/laravel-aws-worker",
"type": "library",
"description": "Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers",
"keywords": ["php","laravel","lumen","sqs","aws","elasticbeanstalk","worker"],
"homepage": "https://github.com/charliepage88/laravel-aws-worker",
"license": "MIT",
"authors": [
{
"name": "Denis Mysenko",
"email": "[email protected]",
"homepage": "https://www.mysenko.com"
},
{
"name": "Charles Page",
"email": "[email protected]",
"homepage": "https://www.charliepage88.com"
}
],
"require": {
"php": "^7.1.3",
"illuminate/support": "^5.8",
"illuminate/queue": "^5.8",
"illuminate/bus": "^5.8",
"aws/aws-sdk-php": "^3.110",
"illuminate/http": "^5.8"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Dusterio\\AwsWorker\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dusterio\\AwsWorker\\Integrations\\LaravelServiceProvider"
]
}
}
}