Download the PHP package tiendanube/laravel-health-check without Composer
On this page you can find all versions of the php package tiendanube/laravel-health-check. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tiendanube/laravel-health-check
More information about tiendanube/laravel-health-check
Files in tiendanube/laravel-health-check
Download tiendanube/laravel-health-check
More information about tiendanube/laravel-health-check
Files in tiendanube/laravel-health-check
Vendor tiendanube
Package laravel-health-check
Short Description Provides monitoring for the key components of your laravel app.
License
Package laravel-health-check
Short Description Provides monitoring for the key components of your laravel app.
License
Please rate this library. Is it a good library?
Informations about the package laravel-health-check
laravel-health-checks
Allows your Laravel app to run health checks on itself
Usage
- Add to Composer:
- Repositories:
{ "type": "vcs", "url": "[email protected]:npmweb/laravel-health-check" },
- Dependencies:
"npmweb/laravel-health-check": "dev-master@dev",
composer update
- Repositories:
- Add service provider:
app.php
'providers' => array(
...
'NpmWeb\LaravelHealthCheck\LaravelHealthCheckServiceProvider',
);
- Add route for the health check controller:
routes.php
Route::resource(
'monitor/health',
'NpmWeb\LaravelHealthCheck\Controllers\HealthCheckController',
['only' => ['index','show']]
);
- Configure the health checks:
php artisan config:publish npmweb/laravel-health-check
- Edit
app/config/packages/npmweb/laravel-health-check/config.php
For information on each health check, see comments in the appropriate class under src/NpmWeb/LaravelHealthCheck/Checks.
All versions of laravel-health-check with dependencies
PHP Build Version
Package Version
The package tiendanube/laravel-health-check contains the following files
Loading the files please wait ....