mainlycode/health-bundle

Symfony bundle for adding a /health endpoint to your application

Installs: 1 199

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

Type:symfony-bundle

0.3.0 2023-10-12 15:55 UTC

This package is auto-updated.

Last update: 2024-04-26 07:26:57 UTC


README

Symfony bundle for adding a /health endpoint to your application

Installation

Install the bundle with Composer:

composer require mainlycode/health-bundle

Register the bundle in your application (config/bundles.php):

return [
    /** your other bundles */
    MainlyCode\HealthBundle\HealthBundle::class => ['all' => true],
];

To add the route to your application, add the following to your config/routing.yaml:

health:
    resource: '@HealthBundle/config/routing.yaml'

or if you are importing routes in PHP:

// config/routes.php
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return function (RoutingConfigurator $routes) {
    $routes->import('@HealthBundle/config/routing.yaml');
};