Skip to content

1.7.0

Compare
Choose a tag to compare
@alanseiden alanseiden released this 10 Apr 23:51
· 201 commits to master since this release

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);