├── .gitattributes ├── .github └── workflows │ └── unit-tests.yaml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Responses │ └── SymfonyResponseFactory.php └── tests └── Responses └── SymfonyResponseFactoryTest.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/.github/workflows/unit-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Responses/SymfonyResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/src/Responses/SymfonyResponseFactory.php -------------------------------------------------------------------------------- /tests/Responses/SymfonyResponseFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/glide-symfony/HEAD/tests/Responses/SymfonyResponseFactoryTest.php --------------------------------------------------------------------------------