{
    "name": "rowbot/url",
    "description": "A WHATWG URL spec compliant URL parser for working with URLs and their query strings.",
    "keywords": ["url", "url-parser", "uri", "querystring", "query-string", "url-parsing", "whatwg"],
    "license": "MIT",
    "authors": [
        {
            "name": "Trevor Rowbotham",
            "homepage": "https://trowbotham.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=8.1",
        "ext-mbstring": "*",
        "brick/math": "^0.12 || ^0.13",
        "psr/log": "^3.0",
        "rowbot/idna": "^0.3.0"
    },
    "require-dev": {
        "guzzlehttp/guzzle": "^7.0",
        "phpstan/phpstan": "^2.1",
        "phpstan/phpstan-deprecation-rules": "^2.0",
        "phpstan/phpstan-strict-rules": "^2.0",
        "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
        "slevomat/coding-standard": "^8.0",
        "squizlabs/php_codesniffer": "^3.7.1",
        "symfony/cache": "^5.0 || ^6.0 || ^7.0"
    },
    "autoload": {
        "psr-4": {
            "Rowbot\\URL\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Rowbot\\URL\\Tests\\": "tests/",
            "Rowbot\\URL\\PHPStan\\": "PHPStan/"
        }
    },
    "scripts": {
        "phpunit": "phpunit --coverage-text",
        "test": [
            "@phpunit"
        ]
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    }
}
