{
    "name": "jeremykendall/php-domain-parser",
    "description": "Public Suffix List based URL 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"
        }
    ],
    "bin": [
        "bin/update-psl"
    ],
    "keywords": [
        "Public Suffix List",
        "Top Level Domains",
        "domain parsing",
        "icann",
        "iana",
        "idn",
        "tld",
        "psl"
    ],
    "require": {
        "ext-intl": "*",
        "ext-json": "*",
        "php": "^7.2.5 || ^8.0",
        "psr/log": "^1.1",
        "psr/simple-cache": "^1.0.1"
    },
    "require-dev": {
        "composer/composer": "^1.6 || ^2.0",
        "friendsofphp/php-cs-fixer": "^2.16",
        "mikey179/vfsstream": "^1.6.7",
        "phpstan/phpstan": "^0.12",
        "phpstan/phpstan-phpunit": "^0.12",
        "phpstan/phpstan-strict-rules": "^0.12",
        "phpunit/phpunit": "^8.0 || ^9.3"
    },
    "suggest": {
        "psr/simple-cache-implementation": "To enable using other cache providers",
        "ext-curl": "To use the package http client",
        "league/uri": "To parse URL and validate host"
    },
    "autoload": {
        "psr-4": {
            "Pdp\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Pdp\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "phpcs": "php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
        "phpstan-src": "phpstan analyse -l max -c phpstan.src.neon src --ansi",
        "phpstan-tests": "phpstan analyse -l max -c phpstan.tests.neon tests --ansi",
        "phpstan": [
            "@phpstan-src",
            "@phpstan-tests"
        ],
        "phpunit": "phpunit --coverage-text",
        "post-install-cmd": "\\Pdp\\Installer::updateLocalCache",
        "post-update-cmd": "\\Pdp\\Installer::updateLocalCache",
        "test": [
            "@phpcs",
            "@phpstan",
            "@phpunit"
        ]
    },
    "scripts-descriptions": {
        "phpcs": "Runs coding style test suite",
        "phpstan": "Runs complete codebase static analysis",
        "phpstan-src": "Runs PHP stan on the source code",
        "phpstan-test": "Runs PHP stan on the test suite",
        "phpunit": "Runs unit and functional testing",
        "test": "Runs the complete test suite"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "5.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    }
}
