| {
    "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": "[email protected] ",
            "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"
            }
        }
    }
}
 |