├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src └── Negotiator.php /.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | /vendor/ 4 | .idea 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/negotiation-middleware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/negotiation-middleware/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/negotiation-middleware/HEAD/composer.json -------------------------------------------------------------------------------- /src/Negotiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/negotiation-middleware/HEAD/src/Negotiator.php --------------------------------------------------------------------------------