mirror of
https://github.com/Art-of-WiFi/UniFi-API-client.git
synced 2024-11-21 09:40:01 +01:00
48482d661a
- PHP 7.4 is now the minimum required version - updated the code for 7.4. specific features such as parameter type hinting, return types, etc. - added the ability to the constructor to change the key that is used to store the unificookie in the session, ($_SESSION['unificookie'] is used by default), this is useful when running multiple applications on the same server
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": ">=7.4.0",
|
|
"ext-curl": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"UniFi_API\\": "src/"
|
|
}
|
|
}
|
|
}
|