-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- increased minimum required PHP version to 5.5.0 - minor syntax improvement based on Scrutinizer feedback - added create_dynamicdns() and set_dynamicdns() methods, "borrowed" routes from @smos - added set_element_adoption() method, contributed by @VWT-Dan - made a start at changing the function/method comments to PHPDoc format (PSR-5) which will support auto-generated class documentation (https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc.md#5-the-phpdoc-format) - added check to throw an error when the $baseurl ends with a / character, thanks to @infraweavers for submitting #66 - fixed issue with logout() on UDM PROs, thanks go to @Olivier6767 for providing access to a UDM PRO, addresses #63 - applied several code styling improvements
- Loading branch information
1 parent
2b34890
commit 69b43df
Showing
3 changed files
with
294 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
{ | ||
"name": "art-of-wifi/unifi-api-client", | ||
"type": "library", | ||
"description": "API client class for use with Ubiquiti's UniFi controller", | ||
"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", | ||
"ubnt", | ||
"ubiquiti", | ||
"unifi", | ||
"controller", | ||
"api", | ||
"client" | ||
], | ||
"homepage": "https://github.com/Art-of-WiFi/UniFi-API-client", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Art of WiFi", | ||
"email": "[email protected]", | ||
"name": "Art of WiFi", | ||
"email": "[email protected]", | ||
"homepage": "http://artofwifi.net" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4.0", | ||
"ext-curl": "*" | ||
"php": ">=5.5.0", | ||
"ext-curl": "*", | ||
"ext-json": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
Oops, something went wrong.