├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Exceptions └── CouldNotSendNotification.php ├── Zenvia.php ├── ZenviaChannel.php ├── ZenviaMessage.php └── ZenviaServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | linting: true 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/Zenvia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/src/Zenvia.php -------------------------------------------------------------------------------- /src/ZenviaChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/src/ZenviaChannel.php -------------------------------------------------------------------------------- /src/ZenviaMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/src/ZenviaMessage.php -------------------------------------------------------------------------------- /src/ZenviaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdalmolin/laravel-zenvia-channel/HEAD/src/ZenviaServiceProvider.php --------------------------------------------------------------------------------