File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ All Notable changes to `laravel-notification-channels/webpush` will be documente
4
4
5
5
## 2.0.0 - 2017-10-23
6
6
7
+ - Added support for package discovery.
7
8
- Removed compatibility with PHP<7 and upgrade deps.
8
9
9
10
## 1.0.0 - 2017-03-25
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ You can install the package via composer:
19
19
composer require laravel-notification-channels/webpush
20
20
```
21
21
22
- First you must install the service provider:
22
+ First you must install the service provider (skip for Laravel>=5.5) :
23
23
24
24
``` php
25
25
// config/app.php
Original file line number Diff line number Diff line change 32
32
"NotificationChannels\\ WebPush\\ Test\\ " : " tests"
33
33
}
34
34
},
35
+ "extra" : {
36
+ "laravel" : {
37
+ "providers" : [
38
+ " NotificationChannels\\ WebPush\\ WebPushServiceProvider"
39
+ ]
40
+ }
41
+ },
35
42
"config" : {
36
43
"sort-packages" : true
37
44
},
You can’t perform that action at this time.
0 commit comments