Search by

fittinq / symfony-health

fittinq

There is no license information available for the latest version (4.1.0) of this package.

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

4.1.0 2021-12-07 09:33 UTC

This package is auto-updated.

Last update: 2026-07-04 15:48:15 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"