1.7.0
Autoloading is now possible using the new Toolkit class. The older ToolkitService::getInstance() technique still works, though, because we wrapped Toolkit.php with ToolkitService.php. Also addition of https transport and new integer types.
For autoloading:
composer.json should contain:
"require": {
"zendtech/IbmiToolkit" : "^1.7.0"
}
Then (after running "composer update") you should be able to instantiate with
$toolkit = new \ToolkitAPI\Toolkit($databaseNameOrResource, $userOrI5NamingFlag, $password, $transportType, $isPersistent);