From 36db2e9a3a0168e5161ea1dc730ab8e5103a5669 Mon Sep 17 00:00:00 2001 From: skys215 Date: Wed, 11 Oct 2017 02:53:33 -0500 Subject: [PATCH 1/2] Specify provider for vendor:publish --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a123fed..39b1321 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Installation ============ - Add `Jlapp\Swaggervel\SwaggervelServiceProvider` to your providers array in `app/config/app.php` above your routes provider (to avoid catch all routes) -- Run `php artisan vendor:publish` to push config files to your app folder. +- Run `php artisan vendor:publish --provider=Jlapp\Swaggervel\SwaggervelServiceProvider` to push config files to your app folder. Example ======= From feb20a0542613e6e958b6539c5fd311fd3d35921 Mon Sep 17 00:00:00 2001 From: skys215 Date: Wed, 11 Oct 2017 04:54:10 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39b1321..5bb435f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Installation ============ - Add `Jlapp\Swaggervel\SwaggervelServiceProvider` to your providers array in `app/config/app.php` above your routes provider (to avoid catch all routes) -- Run `php artisan vendor:publish --provider=Jlapp\Swaggervel\SwaggervelServiceProvider` to push config files to your app folder. +- Run `php artisan vendor:publish --provider="Jlapp\Swaggervel\SwaggervelServiceProvider"` to push config files to your app folder. Example =======