{
    "name": "jeremykendall/php-domain-parser",
    "description": "Public Suffix List and IANA Root Zone Database based Domain parsing implemented in PHP.",
    "homepage": "https://github.com/jeremykendall/php-domain-parser",
    "support": {
        "issues": "https://github.com/jeremykendall/php-domain-parser/issues",
        "source": "https://github.com/jeremykendall/php-domain-parser"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Jeremy Kendall",
            "homepage": "http://about.me/jeremykendall",
            "role": "Developer"
        },
        {
            "name": "Ignace Nyamagana Butera",
            "homepage": "http://nyamsprod.com",
            "role": "Developer"
        },
        {
            "name": "Contributors",
            "homepage": "https://github.com/jeremykendall/php-domain-parser/graphs/contributors"
        }
    ],
    "funding": [
        {
            "type": "github",
            "url": "https://github.com/sponsors/nyamsprod"
        }
    ],
    "keywords": [
        "Public Suffix List",
        "Top Level Domains",
        "domain parsing",
        "icann",
        "iana",
        "idn",
        "tld",
        "psl"
    ],
    "require": {
        "php": "^7.4 || ^8.0",
        "ext-filter": "*",
        "ext-intl": "*",
        "ext-json": "*"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^v3.5.0",
        "guzzlehttp/guzzle": "^7.0",
        "guzzlehttp/psr7": "^1.6||^2.0",
        "phpstan/phpstan": "^1.4.6.",
        "phpstan/phpstan-phpunit": "^1.0.0",
        "phpstan/phpstan-strict-rules": "^1.1.0",
        "phpunit/phpunit": "^9.5.13",
        "psr/http-factory": "^1.0",
        "psr/simple-cache": "^1.0",
        "symfony/cache": "^v5.0 || ^v6.0"
    },
    "suggest": {
        "psr/http-client-implementation": "To use the storage functionnality which depends on PSR-18",
        "psr/http-factory-implementation": "To use the storage functionnality which depends on PSR-17",
        "psr/simple-cache-implementation": "To use the storage functionnality which depends on PSR-16",
        "league/uri": "To parse URL and validate host"
    },
    "autoload": {
        "psr-4": {
            "Pdp\\": "src/"
        }
    },
    "scripts": {
        "phpcs": "php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
        "phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
        "phpstan": "phpstan analyse -l max -c phpstan.neon src --memory-limit=256M --ansi",
        "psalm": "psalm --show-info=true",
        "phpunit": "phpunit --coverage-text",
        "test": [
            "@phpunit",
            "@phpstan",
            "@phpcs:fix"
        ]
    },
    "scripts-descriptions": {
        "phpcs": "Runs coding style test suite",
        "phpcs:fix": "Fix the package coding style",
        "phpstan": "Runs complete codebase static analysis",
        "phpunit": "Runs unit and functional testing",
        "test": "Runs the complete test suite"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "6.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    }
}
