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 00055fb commit e5d320dCopy full SHA for e5d320d
README.md
@@ -31,7 +31,7 @@ You can install the package via composer:
31
composer require laravel-notification-channels/twilio
32
```
33
34
-You must install the service provider:
+Add the service provider (only required on Laravel 5.4 or lower):
35
36
```php
37
// config/app.php
composer.json
@@ -38,5 +38,12 @@
38
},
39
"config": {
40
"sort-packages": true
41
+ },
42
+ "extra": {
43
+ "laravel": {
44
+ "providers": [
45
+ "NotificationChannels\\Twilio\\TwilioProvider"
46
+ ]
47
+ }
48
}
49
0 commit comments