fittinq / symfony-health
There is no license information available for the latest version (4.1.0) of this package.
4.1.0
2021-12-07 09:33 UTC
Requires
- symfony/framework-bundle: ^5.0|^6.0
Requires (Dev)
- phpunit/phpunit: ^9.0
README
This helps creating health endpoints which simply return HTTP_OK responses.
Install via composer
composer require fittinq\symfony-health
Configure bundle
config/bundles.php
<?php
return [
// ...
Fittinq\Symfony\Health\SymfonyHealthBundle::class => ['all' => true],
];
Configure routes
config/routes.yaml
health:
resource: "@SymfonyHealthBundle/Resources/config/routing.yaml"