├── .github └── workflows │ └── main.yml ├── .gitignore ├── .php-cs-fixer.php ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Commands │ ├── SetCORSHeaders.php │ └── SetTempUrlKey.php ├── Composer │ └── Scripts.php ├── OVHConfiguration.php ├── OVHServiceProvider.php └── OVHSwiftAdapter.php └── tests ├── Functional ├── ExpiringObjectsTest.php └── UrlGenerationTest.php └── TestCase.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Commands/SetCORSHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/Commands/SetCORSHeaders.php -------------------------------------------------------------------------------- /src/Commands/SetTempUrlKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/Commands/SetTempUrlKey.php -------------------------------------------------------------------------------- /src/Composer/Scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/Composer/Scripts.php -------------------------------------------------------------------------------- /src/OVHConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/OVHConfiguration.php -------------------------------------------------------------------------------- /src/OVHServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/OVHServiceProvider.php -------------------------------------------------------------------------------- /src/OVHSwiftAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/src/OVHSwiftAdapter.php -------------------------------------------------------------------------------- /tests/Functional/ExpiringObjectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/tests/Functional/ExpiringObjectsTest.php -------------------------------------------------------------------------------- /tests/Functional/UrlGenerationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/tests/Functional/UrlGenerationTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sausin/laravel-ovh/HEAD/tests/TestCase.php --------------------------------------------------------------------------------