Skip to content

Commit b65559b

Browse files
committed
Fixes
1 parent 40a72d0 commit b65559b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Add the service provider to your `config/app.php` providers array:
2525
Then finally, publish the config files:
2626

2727
```php
28-
php artisan vendor:publish --provider=PodPoint\JsLang\Providers\ServiceProvider
28+
php artisan vendor:publish --provider="PodPoint\JsLang\Providers\ServiceProvider"
2929
```
3030

3131
## Usage

src/Providers/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ServiceProvider extends LaravelServiceProvider
1717
public function boot(Factory $view)
1818
{
1919
$this->publishes([
20-
__DIR__ . '/../config/javascript.php' => config_path('javascript.php'),
20+
__DIR__ . '/../../config/javascript.php' => config_path('javascript.php'),
2121
]);
2222

2323
$view->composer('*', ViewComposer::class);

0 commit comments

Comments
 (0)