utopia-php / messaging

Lite & fast micro PHP messaging library that is **easy to use**.
MIT License
14 stars 62 forks source link

feat: geosms adapter #64

Closed loks0n closed 10 months ago

loks0n commented 10 months ago

GEO aware SMS adapter that has Twilio as a global default but can also delegate work to local providers.

$sms = new GEOSMS(new Twilio(...)); // Twilio as default fallback

$sms
    ->setLocal('+91', new MSG91())
    ->setLocal('+44', new Vodafone())