{
"name": "phpgt/cssxpath",
"description": "Convert CSS selectors to XPath queries.",
"type": "library",
"require": {
"php": ">=8.0"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Gt\\CssXPath\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\CssXPath\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration test/phpunit/phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --level 6 src",
"test": [
"@phpunit",
"@phpstan"
]
},
"authors": [
{
"name": "Greg Bowler",
"homepage": "https://www.g105b.com",
"email": "[email protected]",
"role": "Developer"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}