karlmonson/laravel-ping
Simple Ping For Laravel Applications
40,367
29
| Install | |
|---|---|
composer require karlmonson/laravel-ping |
|
| Latest Version: | 1.0.7 |
| License: | MIT |
| Last Updated: | Jun 15, 2023 |
| Links: | GitHub · Packagist |
Maintainer: karlmonson
Ping for Laravel
This Laravel package is simple and unopinionated. It simply returns the HTTP Status Code for a provided URL.
Installation
Install via Composer:
composer require karlmonson/laravel-ping
You'll need to register the ServiceProvider and Facade:
// config/app.php
'providers' => [
// ...
Karlmonson\Ping\PingServiceProvider::class,
];
'aliases' => [
// ...
'Ping' => Karlmonson\Ping\Facades\Ping::class,
];
Usage
<?php
namespace App\Http\Controllers;
use Ping;
use App\Http\Controllers\Controller;
class LinkController extends Controller
{
/**
* Show the current health of a given URL.
*
* @param string $url
* @return string
*/
public function healthCheck($url)
{
$health = Ping::check($url);
if($health == 200) {
return 'Alive!';
} else {
return 'Dead :(';
}
}
}
Credits
- Karl Monson - Author
- Eric Blount - Inspiration (ericmakesstuff/laravel-server-monitor)
License
The MIT License (MIT). Please see License File for more information.
Related Packages
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
631,580,251
9,707
laravel/serializable-closure
Laravel Serializable Closure provides an easy and secure way to serialize closur...
404,034,618
608
nunomaduro/collision
Cli error handling for console/command-line PHP applications.
384,821,166
4,658