composer.json
{
"name": "r6api/client",
"description": "Client for the Rainbow 6 Siege stats API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"R6API\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"R6API\\Client\\tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message": "^1.0",
"php-http/discovery": "^1.0",
"php-http/message-factory": "^v1.0",
"php-http/client-implementation": "^1.0",
"psr/cache": "^1.0",
"greg0ire/enum": "^4.0",
"symfony/serializer": "^4.1",
"ramsey/uuid": "^3.8",
"symfony/property-access": "^4.1"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1",
"phpunit/phpunit": "^7.3",
"cache/predis-adapter": "^1.0"
},
"suggest": {
"php-http/curl-client": "In order to use cURL as the HTTP client",
"php-http/guzzle6-adapter": "In order to use Guzzle v6 as the HTTP client"
}
}