rentbetter / plivo-notifier
Symfony Plivo Notifier Bridge
Installs: 11 599
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-notifier-bridge
pkg:composer/rentbetter/plivo-notifier
Requires
- php: >=8.1
- symfony/http-client: ^7.2
- symfony/notifier: ^7.2
Requires (Dev)
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2026-01-08 01:29:30 UTC
README
This repository is archived and no longer maintained.
Symfony now provides official Plivo support via the Symfony Notifier component, which fully replaces this package.
👉 Please use the official package instead: https://github.com/symfony/plivo-notifier
Reasons for archiving:
- Official Symfony support is actively maintained
- Better long-term compatibility with Symfony versions
- Security fixes and new features are handled upstream
This repository remains available for historical reference only.
Plivo Notifier
Provides Plivo integration for Symfony Notifier.
Installation
- Install package using composer
composer require rentbetter/plivo-notifier@^6.1
- Add your Plivo DSN to your environment variables, e.g. in
.env
PLIVO_DSN=plivo://AUTH_ID:AUTH_TOKEN@default?from=FROM
- Register the
PlivoTransportFactoryin yourservices.yaml
notifier.transport_factory.plivo: class: Symfony\Component\Notifier\Bridge\Plivo\PlivoTransportFactory parent: notifier.transport_factory.abstract tags: ['texter.transport_factory']
- Enable the Plivo transport in your
config/packages/notifier.yamlconfiguration
framework: notifier: texter_transports: plivo: '%env(PLIVO_DSN)%'
- Start sending SMS in your application, see the symfony docs
DSN example
PLIVO_DSN=plivo://AUTH_ID:AUTH_TOKEN@default?from=FROM&statusUrl=URL&statusUrlMethod=METHOD
where:
AUTH_IDis your Plivo auth IDAUTH_TOKENis your Plivo auth tokenFROMis your senderURL(optional) is the URL to which Plivo should send delivery updatesMETHOD(optional) is the HTTP method (GET, POST) with which Plivo should callURL