symfony/nexmo-notifier
Symfony Notifier bridge for Vonage (formerly Nexmo). Sends SMS notifications via the Notifier component, integrating with Symfony’s channel system. Configure Vonage credentials and deliver messages through a Nexmo/Vonage transport in your apps.
"This package lets us add SMS/voice notifications to our app in weeks instead of months by leveraging Nexmo’s global telecom network. For example, we could roll out order confirmations or fraud alerts without hiring telecom engineers. The cost is predictable (pay-per-message via Nexmo), and the MIT license avoids vendor lock-in. Since it’s archived, we’ll pair it with Nexmo’s direct support for critical features, but it’s a 10x faster path to basic notifications than building from scratch."
*"The symfony/nexmo-notifier bridge abstracts Nexmo’s API into a Symfony-friendly service, handling:
OrderConfirmationTemplate).Trade-offs:
Recommendation: Use this for MVP notifications, then extend with Nexmo’s full API as needed. Example workflow:
// Send an SMS via Symfony’s service container
$notifier = $container->get(NexmoNotifier::class);
$notifier->sendSms(
'+1234567890',
'Your order #12345 is confirmed!'
);
```"*
How can I help you explore Laravel packages today?