Skip to content

Commit 3820fc5

Browse files
committed
Merge pull request davibennun#40 from wanchopeblanco/laravel5
Publish Config Fix
2 parents f90afa9 + 4327258 commit 3820fc5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Alias the PushNotification facade by adding it to the aliases array in the `app/
2929

3030
Copy the config file into your project by running
3131
```
32-
php artisan config:publish davibennun/laravel-push-notification
32+
php artisan vendor:publish --provider="Vendor/Davibennun/LaravelPushNotification/LaravelPushNotificationServiceProvider" --tag="config"
3333
```
3434

3535
This will generate a config file like this

src/Davibennun/LaravelPushNotification/LaravelPushNotificationServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function boot()
2121
{
2222
$this->publishes([
2323
__DIR__.'/../../config/config.php' => config_path('push-notification.php')
24-
]);
24+
], 'config');
2525
}
2626

2727
/**
@@ -47,4 +47,4 @@ public function provides()
4747
return array();
4848
}
4949

50-
}
50+
}

0 commit comments

Comments
 (0)