I recently enjoyed using your PHP client for a project. Initially the documentation seemed a bit confusing, so I have a couple suggestions.
I went for the quickest setup method, which was using the .phar file, but the wiki left me scratching my head as including the phar file did not make my code work.
Code: Select all
require_once 'PEAR2_Net_RouterOS-1.0.0b5.phar';
Code: Select all
use PEAR2\Net\RouterOS;

On another note, the usage examples initially confused me as they did not include a password during the connection. It would be helpful to show the password too:
Code: Select all
$client = new \PEAR2\Net\RouterOS\Client('example.com', 'admin', 'password');