From fa5e6eb865ce4b2996a38cd6514e56354fbda8b1 Mon Sep 17 00:00:00 2001 From: Zacharias Creutznacher Date: Mon, 7 Jul 2025 10:15:43 +0200 Subject: [PATCH] Update README.md make the composer install and publish config command easier to copy/past into the terminal by removing the $ sign, so that it will not be copied when using the native copy button of the code block --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7710444..5b2b6ac 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ This package makes it easy to send [Twilio notifications](https://documentation. You can install the package via Composer: ``` bash -$ composer require laravel-notification-channels/twilio +composer require laravel-notification-channels/twilio ``` ### Configuration @@ -45,7 +45,12 @@ TWILIO_SHORTEN_URLS=true # optional, enable URL shortener ### Advanced configuration -Run `php artisan vendor:publish --provider="NotificationChannels\Twilio\TwilioProvider"` +You can publish the config file with: +``` bash +php artisan vendor:publish --provider="NotificationChannels\Twilio\TwilioProvider" +``` + +Here you can find the published config file: ``` /config/twilio-notification-channel.php ```