kdabek/http-client

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "kdabek/http-client",
    "description": "Simple Http Client with PSR-7 support",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Krystian DÄ…bek",
            "email": "krystian.dk@gmail.com"
        }
    ],
    "autoload": {
        "psr-4": {
            "Kdabek\\HttpClient\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Kdabek\\HttpClient\\": "tests/"
        }
    },
    "require": {
        "php": ">=8.0",
        "ext-curl": "*",
        "ext-json": "*",
        "psr/http-message": "^1.0",
        "psr/http-factory": "^1.0",
        "psr/log": "^1.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "squizlabs/php_codesniffer": "^3.6",
        "phpmd/phpmd": "^2.10",
        "symfony/process": "^5.3"
    },
    "scripts": {
        "tests": [
            "vendor/bin/phpunit",
            "vendor/bin/phpcs --standard=PSR12 src/"
        ]
    },
    "minimum-stability": "stable"
}