├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── sendy.php ├── phpunit.xml ├── src ├── Facades │ └── Sendy.php ├── Sendy.php └── SendyServiceProvider.php └── tests └── SendyTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | vendor/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/sendy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/config/sendy.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Facades/Sendy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/src/Facades/Sendy.php -------------------------------------------------------------------------------- /src/Sendy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/src/Sendy.php -------------------------------------------------------------------------------- /src/SendyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/src/SendyServiceProvider.php -------------------------------------------------------------------------------- /tests/SendyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hocza/sendy-laravel/HEAD/tests/SendyTest.php --------------------------------------------------------------------------------