diff --git a/README.md b/README.md index 4c776a6..a92bf06 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Laravel 5 - 8.x Task Scheduler with Elastic Beanstalk +# Laravel 5 - 9.x Task Scheduler with Elastic Beanstalk *Ensure one instance in an Elastic Beanstalk environment is running Laravel's Scheduler* diff --git a/composer.json b/composer.json index c972d3f..0d9ae80 100644 --- a/composer.json +++ b/composer.json @@ -10,10 +10,10 @@ } ], "require": { - "illuminate/support": "5 - 8", - "illuminate/console": "5 - 8", + "illuminate/support": "5 - 9", + "illuminate/console": "5 - 9", "aws/aws-sdk-php": "^3.26", - "lstrojny/functional-php": "^1.2" + "lstrojny/functional-php": "^1.17" }, "autoload": { "psr-4": { diff --git a/src/ElasticBeanstalkCronProvider.php b/src/ElasticBeanstalkCronProvider.php index 232ce6e..90a51a4 100644 --- a/src/ElasticBeanstalkCronProvider.php +++ b/src/ElasticBeanstalkCronProvider.php @@ -23,17 +23,17 @@ public function register() public function boot() { $this->publishes([ - __DIR__ . '/.platform' => base_path('/.platform'), - __DIR__ . '/elasticbeanstalkcron.php' => config_path('elasticbeanstalkcron.php') - ], 'ebcron'); + __DIR__ . '/.platform' => base_path('/.platform'), + __DIR__ . '/elasticbeanstalkcron.php' => config_path('elasticbeanstalkcron.php') + ], 'ebcron'); } protected function registerConsoleCommands() { $this->commands([ - ConfigureLeaderCommand::class, - SetupLeaderSelectionCRONCommand::class, - SetupSchedulerCommand::class - ]); + ConfigureLeaderCommand::class, + SetupLeaderSelectionCRONCommand::class, + SetupSchedulerCommand::class + ]); } }