├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Facades │ └── Sms.php ├── Gateways │ ├── ClickatellGateway.php │ ├── CustomGateway.php │ ├── GupshupGateway.php │ ├── ItexmoGateway.php │ ├── LogGateway.php │ ├── MSG91Gateway.php │ ├── MVaayooGateway.php │ ├── MockerGateway.php │ ├── NexmoGateway.php │ ├── SmsAchariyaGateway.php │ ├── SmsCountryGateway.php │ ├── SmsGatewayInterface.php │ ├── SmsLaneGateway.php │ └── TwilioGateway.php ├── Sms.php ├── SmsFileView.php ├── SmsServiceProvider.php ├── SmsViewInterface.php ├── config │ └── config.php └── views │ └── sms │ └── test.blade.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Facades/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Facades/Sms.php -------------------------------------------------------------------------------- /src/Gateways/ClickatellGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/ClickatellGateway.php -------------------------------------------------------------------------------- /src/Gateways/CustomGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/CustomGateway.php -------------------------------------------------------------------------------- /src/Gateways/GupshupGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/GupshupGateway.php -------------------------------------------------------------------------------- /src/Gateways/ItexmoGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/ItexmoGateway.php -------------------------------------------------------------------------------- /src/Gateways/LogGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/LogGateway.php -------------------------------------------------------------------------------- /src/Gateways/MSG91Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/MSG91Gateway.php -------------------------------------------------------------------------------- /src/Gateways/MVaayooGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/MVaayooGateway.php -------------------------------------------------------------------------------- /src/Gateways/MockerGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/MockerGateway.php -------------------------------------------------------------------------------- /src/Gateways/NexmoGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/NexmoGateway.php -------------------------------------------------------------------------------- /src/Gateways/SmsAchariyaGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/SmsAchariyaGateway.php -------------------------------------------------------------------------------- /src/Gateways/SmsCountryGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/SmsCountryGateway.php -------------------------------------------------------------------------------- /src/Gateways/SmsGatewayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/SmsGatewayInterface.php -------------------------------------------------------------------------------- /src/Gateways/SmsLaneGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/SmsLaneGateway.php -------------------------------------------------------------------------------- /src/Gateways/TwilioGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Gateways/TwilioGateway.php -------------------------------------------------------------------------------- /src/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/Sms.php -------------------------------------------------------------------------------- /src/SmsFileView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/SmsFileView.php -------------------------------------------------------------------------------- /src/SmsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/SmsServiceProvider.php -------------------------------------------------------------------------------- /src/SmsViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/SmsViewInterface.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/views/sms/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softon/sms/HEAD/src/views/sms/test.blade.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------