Skip to content

Commit 5452280

Browse files
committed
fix: configurations file path
1 parent 3c61265 commit 5452280

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Providers/GrokServiceProvider.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace GrokPHP\Laravel\Providers;
44

5+
use GrokPHP\Laravel\Commands\InstallGrokCommand;
56
use Illuminate\Support\ServiceProvider;
67
use GrokPHP\Client\Clients\GrokClient;
78
use GrokPHP\Client\Config\GrokConfig;
@@ -32,12 +33,12 @@ public function boot(): void
3233
{
3334
if ($this->app->runningInConsole()) {
3435
$this->commands([
35-
\GrokPHP\Laravel\Commands\InstallGrokCommand::class,
36+
InstallGrokCommand::class,
3637
]);
3738

3839
$this->publishes([
39-
__DIR__ . '/../Config/grok.php' => config_path('grok.php'),
40-
], 'config');
40+
__DIR__ . '/../../config/grok.php' => config_path('grok.php'),
41+
], 'grok-config');
4142
}
4243
}
4344
}

0 commit comments

Comments
 (0)