{
	"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.8.13 || ^0.9",
		"psr/log": "^3.0",
		"rowbot/idna": "^0.1.5"
	},
	"require-dev": {
		"guzzlehttp/guzzle": "^7.0",
		"phpstan/phpstan": "^1.9",
		"phpstan/phpstan-deprecation-rules": "^1.0",
		"phpstan/phpstan-strict-rules": "^1.0",
		"phpunit/phpunit": "^10.0 || ^11.0",
		"slevomat/coding-standard": "^8.0",
		"squizlabs/php_codesniffer": "^3.7.1",
		"symfony/cache": "^5.0 || ^6.0"
	},
	"autoload": {
		"psr-4": {
			"Rowbot\\URL\\": "src/"
		}
	},
	"autoload-dev": {
		"psr-4": {
			"Rowbot\\URL\\Tests\\": "tests/"
		}
	},
	"scripts": {
		"phpunit": "phpunit --coverage-text",
		"test": [
			"@phpunit"
		]
	},
	"config": {
		"sort-packages": true,
		"allow-plugins": {
			"dealerdirect/phpcodesniffer-composer-installer": true
		}
	}
}
