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 d51db3e commit 4890bb9Copy full SHA for 4890bb9
README.md
@@ -62,7 +62,7 @@ php artisan migrate
62
Optionally, you can publish the configuration file:
63
64
```bash
65
-php artisan vendor:publish --provider="DirectoryTree\Metrics\MetricServiceProvider"
+php artisan vendor:publish --tag="metrics-config"
66
```
67
68
This will create a `config/metrics.php` file where you can configure queueing behavior:
src/MetricServiceProvider.php
@@ -39,6 +39,6 @@ public function boot(): void
39
40
$this->publishes([
41
__DIR__.'/../config/metrics.php' => $this->app['path.config'].DIRECTORY_SEPARATOR.'metrics.php',
42
- ]);
+ ], 'metrics-config');
43
}
44
0 commit comments