mikecbrant/php-rest-client

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "mikecbrant/php-rest-client",
    "description": "PSR-4 PHP Package Boilerplate.",
    "type": "library",
    "keywords": [
        "REST",
        "cURL",
        "curl",
        "HTTP",
        "client",
        "REST client",
        "HTTP client",
        "cURL client",
        "curl client"
    ],
    "license": "MIT",
    "authors": [
        {
            "name": "Mike Brant",
            "email": "mikebranttx@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.6",
        "ext-curl": "*"
    },
    "require-dev": {
        "phpunit/phpunit": ">=5.7",
        "phpunit/php-code-coverage": "*",
        "phpdocumentor/phpdocumentor": "*",
        "evert/phpdoc-md" : "~0.2.0",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "autoload": {
        "psr-4": {
            "MikeBrant\\RestClientLib\\": "src/RestClientLib"
        }
    }
}