PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Edward Paul   Laravel Uptime Monitor   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Uptime Monitor
Monitor servers to verify if they are responding
Author: By
Last change:
Date: 4 years ago
Size: 1,523 bytes
 

Contents

Class file image Download
{ "name": "infinitypaul/laravel-uptime", "description": "Keep track of critical endpoints with this command-line uptime monitor. Add an endpoint, set a frequency and listen to an event if something goes down.", "keywords": [ "infinitypaul", "laravel-uptime", "ping", "check website up" ], "homepage": "https://github.com/infinitypaul/laravel-uptime", "license": "MIT", "type": "library", "authors": [ { "name": "Paul Edward", "email": "infinitypaul@live.com", "role": "Developer" } ], "require": { "php": ">=5.5.9", "illuminate/support": "~5.5|~6.5|^7.0", "guzzlehttp/guzzle": "5.*|6.*" }, "require-dev": { "orchestra/testbench": "~3.5|~4.4|^5.0" }, "autoload": { "psr-4": { "Infinitypaul\\LaravelUptime\\": "src" } }, "autoload-dev": { "psr-4": { "Infinitypaul\\LaravelUptime\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Infinitypaul\\LaravelUptime\\LaravelUptimeServiceProvider" ], "aliases": { "LaravelUptime": "Infinitypaul\\LaravelUptime\\LaravelUptimeFacade" } } } }