├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── composer.json ├── phpunit.xml └── src ├── Mail ├── Transport │ └── SmartDoveTransport.php └── TransportManager.php ├── SMS ├── Client.php ├── SmartDoveChannel.php └── SmartDoveMessage.php └── SmartDoveServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Mail/Transport/SmartDoveTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/Mail/Transport/SmartDoveTransport.php -------------------------------------------------------------------------------- /src/Mail/TransportManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/Mail/TransportManager.php -------------------------------------------------------------------------------- /src/SMS/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/SMS/Client.php -------------------------------------------------------------------------------- /src/SMS/SmartDoveChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/SMS/SmartDoveChannel.php -------------------------------------------------------------------------------- /src/SMS/SmartDoveMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/SMS/SmartDoveMessage.php -------------------------------------------------------------------------------- /src/SmartDoveServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/smartdove/HEAD/src/SmartDoveServiceProvider.php --------------------------------------------------------------------------------