biurad/php-http-galaxy

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "biurad/http-galaxy",
    "type": "library",
    "description": "Http Galaxy: abstraction for HTTP request, response, and csp protection. Provides careful data sanitization and utility for URL and cookies manipulation.",
    "keywords": ["http","request","response","csp","url","proxy","cookies","session","PSR-7","PSR-15","PSR-17","PSR-18","biurad","php"],
    "homepage": "https://www.biurad.com",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Divine Niiquaye Ibok",
            "email": "divineibok@gmail.com"
        },
        {
            "name": "Biurad Lap Community",
            "homepage": "https://biurad.com/contributors"
        }
    ],
    "support": {
        "docs": "https://docs.biurad.com/http-galaxy/",
        "issues": "https://github.com/biurad/http-galaxy/issues",
        "rss": "https://github.com/biurad/http-galaxy/releases.atom",
        "source": "https://github.com/biurad/http-galaxy"
    },
    "require": {
        "php": "^7.3 || ^8.0",
        "ext-json": "*",
        "psr/http-server-middleware": "^1.0",
        "symfony/polyfill-php80": "^1.23",
        "symfony/http-foundation": "^5.3 || ^6.0"
    },
    "require-dev": {
        "composer/package-versions-deprecated": "^1.11",
        "laminas/laminas-stratigility": "^3.4",
        "phpunit/phpunit": "^8.5 || ^9.5",
        "squizlabs/php_codesniffer": "^3.6",
        "symfony/cache": "^5.3 || ^6.0",
        "vimeo/psalm": "^4.7"
    },
    "suggest": {
        "laminas/laminas-stratigility": "To use PSR-15 middleware support",
        "psr/cache": "To use the Cache Session Handler and/or cache PSR-15 middleware",
        "symfony/cache": "To use the Cache Session Handler and/or cache PSR-15 middleware",
        "symfony-http-client": "To use the Symfony PHP HTTP client library",
        "symfony/web-link": "To use PSR-13 link in application",
        "yiisoft/network-utilities": "To use Network related utilities for IP and DNS"
    },
    "autoload": {
        "psr-4": {
            "Biurad\\Http\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Biurad\\Http\\Tests\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.x-dev"
        }
    },
    "scripts": {
        "phpcs": "phpcs -q",
        "psalm": "psalm --show-info=true",
        "phpunit": "phpunit --no-coverage",
        "test": [
            "@phpcs",
            "@psalm",
            "@phpunit"
        ]
    },
    "config": {
        "allow-plugins": {
            "composer/package-versions-deprecated": false
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}