Skip to content

Commit 86274b9

Browse files
committed
added installation notes
1 parent 477f570 commit 86274b9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

notifications.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,11 @@ If you would like to customize which channels a notifiable entity receives its b
543543
<a name="sms-prerequisites"></a>
544544
### Prerequisites
545545

546-
Sending SMS notifications in Laravel is powered by [Nexmo](https://www.nexmo.com/). Before you can send notifications via Nexmo, you need to install the `nexmo/client` Composer package and add a few configuration options to your `config/services.php` configuration file. You may copy the example configuration below to get started:
546+
Sending SMS notifications in Laravel is powered by [Nexmo](https://www.nexmo.com/). Before you can send notifications via Nexmo, you need to install the `laravel/nexmo-notification-channel` Composer package:
547+
548+
composer require laravel/nexmo-notification-channel
549+
550+
Next, you will need to add a few configuration options to your `config/services.php` configuration file. You may copy the example configuration below to get started:
547551

548552
'nexmo' => [
549553
'key' => env('NEXMO_KEY'),
@@ -639,9 +643,9 @@ When sending notifications via the `nexmo` channel, the notification system will
639643
<a name="slack-prerequisites"></a>
640644
### Prerequisites
641645

642-
Before you can send notifications via Slack, you must install the Guzzle HTTP library via Composer:
646+
Before you can send notifications via Slack, you must install the notification channel via Composer:
643647

644-
composer require guzzlehttp/guzzle
648+
composer require laravel/slack-notifiation-channel
645649

646650
You will also need to configure an ["Incoming Webhook"](https://api.slack.com/incoming-webhooks) integration for your Slack team. This integration will provide you with a URL you may use when [routing Slack notifications](#routing-slack-notifications).
647651

0 commit comments

Comments
 (0)