mirror of
https://github.com/Art-of-WiFi/UniFi-API-client.git
synced 2024-11-21 17:49:59 +01:00
9cca43557c
- added property $request_timeout to control the cURL option CURLOPT_TIMEOUT, contributed by @mreho - added setter and getter for $request_timeout, contributed by @mreho - changed default value for the cURL option CURLOPT_HTTP_VERSION to CURL_HTTP_VERSION_1_1: - as of cURL version 7.62.0 the default value is CURL_HTTP_VERSION_2TLS which may cause issues - https://curl.se/libcurl/c/CURLOPT_HTTP_VERSION.html - added property for $curl_http_version to hold the value for CURLOPT_HTTP_VERSION - added setter and getter for $curl_http_version - switched to using a constant to hold the class version - updated the README file
33 lines
761 B
JSON
Executable File
33 lines
761 B
JSON
Executable File
{
|
|
"name": "art-of-wifi/unifi-api-client",
|
|
"type": "library",
|
|
"description": "API client class for use with Ubiquiti's UniFi controller",
|
|
"keywords": [
|
|
"ubnt",
|
|
"ubiquiti",
|
|
"unifi",
|
|
"controller",
|
|
"api",
|
|
"client"
|
|
],
|
|
"homepage": "https://github.com/Art-of-WiFi/UniFi-API-client",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Art of WiFi",
|
|
"email": "info@artofowifi.net",
|
|
"homepage": "https://artofwifi.net"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.5.0",
|
|
"ext-curl": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"UniFi_API\\": "src/"
|
|
}
|
|
}
|
|
}
|