| {
    "name": "acamposm/ping",
    "description": "Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway.",
    "keywords": [
        "icmp",
        "laravel",
        "php",
        "ping"
    ],
    "homepage": "https://github.com/angelcamposm/ping",
    "readme": "https://github.com/angelcamposm/ping/blob/master/README.md",
    "license": "MIT",
    "type": "library",
    "authors": [
        {
            "name": "Angel Campos",
            "email": "[email protected] ",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.4"
    },
    "require-dev": {
        "orchestra/testbench": "^5.3",
        "phpunit/phpunit": "^9"
    },
    "autoload": {
        "psr-4": {
            "Acamposm\\Ping\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Acamposm\\Ping\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "phpunit --colors=always --testdox",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Acamposm\\Ping\\PingServiceProvider"
            ],
            "aliases": {
                "Ping": "Acamposm\\Ping\\PingFacade"
            }
        }
    }
}
 |