├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Slim │ └── Middleware │ ├── ContentNegotiation.php │ └── ContentTypes.php └── tests ├── ContentNegotiationTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Slim/Middleware/ContentNegotiation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/src/Slim/Middleware/ContentNegotiation.php -------------------------------------------------------------------------------- /src/Slim/Middleware/ContentTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/src/Slim/Middleware/ContentTypes.php -------------------------------------------------------------------------------- /tests/ContentNegotiationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/tests/ContentNegotiationTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimphp/Slim-Middleware/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------