{
"name": "p-chess/api",
"description": "PHP client for chess-api.com using PSR-18 HTTP Client",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Massimiliano Arione",
"email": "garakkio@gmail.com"
}
],
"require": {
"php": "^8.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.93",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5 || ^12.5 || ^13.0"
},
"autoload": {
"psr-4": {
"PChess\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PChess\\Api\\Tests\\": "tests/"
}
}
}
|