├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Responses │ └── LaravelResponseFactory.php └── tests └── Responses └── LaravelResponseFactoryTest.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Responses/LaravelResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/src/Responses/LaravelResponseFactory.php -------------------------------------------------------------------------------- /tests/Responses/LaravelResponseFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-laravel/HEAD/tests/Responses/LaravelResponseFactoryTest.php --------------------------------------------------------------------------------