├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── docs └── en │ └── README.md ├── phpunit.xml ├── src ├── DoesNotReceive.php ├── DriverManager.php ├── Drivers │ ├── AbstractSMS.php │ ├── CallFireSMS.php │ ├── DriverInterface.php │ ├── EZTextingSMS.php │ ├── EmailSMS.php │ ├── FlowrouteSMS.php │ ├── JustSendSMS.php │ ├── LabsMobileSMS.php │ ├── LogSMS.php │ ├── MozeoSMS.php │ ├── NexmoSMS.php │ ├── PlivoSMS.php │ ├── SMS77.php │ ├── TwilioSMS.php │ └── ZenviaSMS.php ├── Facades │ └── SMS.php ├── IncomingMessage.php ├── MakesRequests.php ├── OutgoingMessage.php ├── SMS.php ├── SMSNotSentException.php ├── SMSServiceProvider.php └── config │ └── sms.php └── tests ├── MessageTest.php ├── SMS77Test.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/composer.json -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/DoesNotReceive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/DoesNotReceive.php -------------------------------------------------------------------------------- /src/DriverManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/DriverManager.php -------------------------------------------------------------------------------- /src/Drivers/AbstractSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/AbstractSMS.php -------------------------------------------------------------------------------- /src/Drivers/CallFireSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/CallFireSMS.php -------------------------------------------------------------------------------- /src/Drivers/DriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/DriverInterface.php -------------------------------------------------------------------------------- /src/Drivers/EZTextingSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/EZTextingSMS.php -------------------------------------------------------------------------------- /src/Drivers/EmailSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/EmailSMS.php -------------------------------------------------------------------------------- /src/Drivers/FlowrouteSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/FlowrouteSMS.php -------------------------------------------------------------------------------- /src/Drivers/JustSendSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/JustSendSMS.php -------------------------------------------------------------------------------- /src/Drivers/LabsMobileSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/LabsMobileSMS.php -------------------------------------------------------------------------------- /src/Drivers/LogSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/LogSMS.php -------------------------------------------------------------------------------- /src/Drivers/MozeoSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/MozeoSMS.php -------------------------------------------------------------------------------- /src/Drivers/NexmoSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/NexmoSMS.php -------------------------------------------------------------------------------- /src/Drivers/PlivoSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/PlivoSMS.php -------------------------------------------------------------------------------- /src/Drivers/SMS77.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/SMS77.php -------------------------------------------------------------------------------- /src/Drivers/TwilioSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/TwilioSMS.php -------------------------------------------------------------------------------- /src/Drivers/ZenviaSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Drivers/ZenviaSMS.php -------------------------------------------------------------------------------- /src/Facades/SMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/Facades/SMS.php -------------------------------------------------------------------------------- /src/IncomingMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/IncomingMessage.php -------------------------------------------------------------------------------- /src/MakesRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/MakesRequests.php -------------------------------------------------------------------------------- /src/OutgoingMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/OutgoingMessage.php -------------------------------------------------------------------------------- /src/SMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/SMS.php -------------------------------------------------------------------------------- /src/SMSNotSentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/SMSNotSentException.php -------------------------------------------------------------------------------- /src/SMSServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/SMSServiceProvider.php -------------------------------------------------------------------------------- /src/config/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/src/config/sms.php -------------------------------------------------------------------------------- /tests/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/tests/MessageTest.php -------------------------------------------------------------------------------- /tests/SMS77Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoftwareIO/simple-sms/HEAD/tests/SMS77Test.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |