Initial release of the Unifi API Client

This commit is contained in:
Joris van de Sande
2015-08-09 21:06:47 +02:00
commit 8ce264b2a0
11 changed files with 494 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
return [
// The base uri of your Unifi controller
'base_uri' => 'https://127.0.0.1:8443',
// Your username (You should create a user with read only access to the Unifi controller)
'username' => '',
// Your password
'password' => '',
// The site name to run the examples against
'site' => 'default'
];