├── .gitignore ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Channels │ └── SmsChannel.php ├── Messages │ └── SmsMessage.php └── SmsChannelServiceProvider.php └── tests └── ChannelTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Channels/SmsChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/src/Channels/SmsChannel.php -------------------------------------------------------------------------------- /src/Messages/SmsMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/src/Messages/SmsMessage.php -------------------------------------------------------------------------------- /src/SmsChannelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/src/SmsChannelServiceProvider.php -------------------------------------------------------------------------------- /tests/ChannelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsnubix/aws-sns-sms-channel/HEAD/tests/ChannelTest.php --------------------------------------------------------------------------------