We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c61265 commit 5452280Copy full SHA for 5452280
src/Providers/GrokServiceProvider.php
@@ -2,6 +2,7 @@
2
3
namespace GrokPHP\Laravel\Providers;
4
5
+use GrokPHP\Laravel\Commands\InstallGrokCommand;
6
use Illuminate\Support\ServiceProvider;
7
use GrokPHP\Client\Clients\GrokClient;
8
use GrokPHP\Client\Config\GrokConfig;
@@ -32,12 +33,12 @@ public function boot(): void
32
33
{
34
if ($this->app->runningInConsole()) {
35
$this->commands([
- \GrokPHP\Laravel\Commands\InstallGrokCommand::class,
36
+ InstallGrokCommand::class,
37
]);
38
39
$this->publishes([
- __DIR__ . '/../Config/grok.php' => config_path('grok.php'),
40
- ], 'config');
+ __DIR__ . '/../../config/grok.php' => config_path('grok.php'),
41
+ ], 'grok-config');
42
}
43
44
0 commit comments