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

This package is auto-updated.

Last update: 2024-11-04 12:18:28 UTC


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"