Early stage of a Xen XAPI client in PHP
examples/*
Try the example first, but if failed:
There's a bug in: vendor/zendframework/zendframework/library/Zend/Http/Header/Connection.php
Around line 42
FROM:
list($name, $value) = explode(': ', $headerLine, 2);
TO:
list($name, $value) = explode(':', $headerLine, 2);