reedware / laravel-sms-nexmo
Adds the ability to send text messages using Nexmo.
v1.0.0
2021-06-22 22:25 UTC
Requires
- php: >=7.3
- reedware/laravel-sms: ^1.0
- vonage/client-core: ^2.4
Requires (Dev)
- guzzlehttp/guzzle: ^7.0
- laravel/framework: ^6.0|^7.0|^8.0
- mockery/mockery: ^1.4.2
- orchestra/testbench-core: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.5|^9.5
This package is auto-updated.
Last update: 2024-10-23 05:54:53 UTC
README
Introduction
This package SMS integrates with Twilio using the Laravel SMS package.
Installation
You may install this package using composer:
composer require reedware/laravel-sms-nexmo
If you haven't already, you should then follow the Installation guide for Laravel SMS.
Set the default
option in your config/sms.php
configuration file to nexmo
(or leverage an environment variable). Next, verify that your nexmo provider configuration file contains the following options:
'your-driver-name' => [
'transport' => 'nexmo',
'key' => 'your-nexmo-key',
'secret' => 'your-nexmo-secret
],
Once the sms provider has been configured, you can then start sending text messages using Nexmo. To get started and view examples, refer to the Laravel SMS documentation.