Skip to content

Commit

Permalink
Merge pull request #31 from andrew-broberg-five9/fix-config-key
Browse files Browse the repository at this point in the history
fix: Fixes wrong config key in service provider
  • Loading branch information
marickvantuil authored Mar 27, 2024
2 parents 3421230 + ae17528 commit 0acaafa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ composer require stackkit/laravel-google-cloud-scheduler
Optionally, you may publish the configuration file:

```bash
php artisan vendor:publish --tag-cloud-scheduler-config
php artisan vendor:publish --tag=cloud-scheduler-config
```

3 - Ensure PHP executable is in open_basedir. This is required for the package to run Artisan commands.
Expand Down
2 changes: 1 addition & 1 deletion src/CloudSchedulerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function boot(Router $router)

public function register()
{
$this->mergeConfigFrom(__DIR__.'/../config/cloud-scheduler.php', 'cloud-scheduler-config');
$this->mergeConfigFrom(__DIR__.'/../config/cloud-scheduler.php', 'cloud-scheduler');

$this->publishes([
__DIR__.'/../config/cloud-scheduler.php' => config_path('cloud-scheduler.php'),
Expand Down

0 comments on commit 0acaafa

Please sign in to comment.