dafiti / contentnegotiation-service-provider
A Silex Service Provider for Simple Content Negotiation
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 016
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 5
Forks: 1
Open Issues: 0
Requires
- php: >=5.5.0
- silex/silex: ~1.1
Requires (Dev)
- fabpot/php-cs-fixer: @stable
- phpunit/phpunit: @stable
This package is not auto-updated.
Last update: 2021-06-12 00:10:10 UTC
README
A Silex Service Provider for Simple Content Negotiation.
Instalation
The package is available on Packagist. Autoloading is PSR-4 compatible.
{ "require": { "dafiti/contentnegotiation-service-provider": "dev-master" } }
Usage
use Silex\Application; use Dafiti\Silex\ContentNegotiationServiceProvider; $config = [ 'available_accepts' => [ 'application/json', 'application/xml' ], 'default_accept' => 'application/json' ]; $app = new Application(); $app->register(new ContentNegotiationServiceProvider($config)); $app->get("/your-endpoint", function() { $data = ["you data to response"]; return new \Dafiti\Silex\Response($data); });
Request Examples:
Request
HTTP GET
Header: Accept: application/json
URL: http://baseurl.com/your-endpoint
####Response
Response Header: Content-Type: application/json
Status Code: 200
Body:
{
"you data to response"
}
####Request
HTTP GET
Header: Accept: text/html
URL: http://baseurl.com/your-endpoint
Response
Response Header: Content-Type: application/json
Status Code: 406
Body:
{ "message":"Accept Type Not Acceptable" }
License
MIT License