forked from FoxxMD/laravel-elasticbeanstalk-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 800 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
{
"name": "nadge/laravel-elasticbeanstalk-cron",
"description": "Ensure only one Laravel instance is running CRON jobs in an EB environment",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "FoxxMD",
"email": "FoxxMD@users.noreply.github.com"
}
],
"require": {
"illuminate/support": "5 - 10",
"illuminate/console": "5 - 10",
"aws/aws-sdk-php": "^3.26",
"lstrojny/functional-php": "^1.17"
},
"autoload": {
"psr-4": {
"FoxxMD\\LaravelElasticBeanstalkCron\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"FoxxMD\\LaravelElasticBeanstalkCron\\ElasticBeanstalkCronProvider"
]
}
}
}