1. Go to this page and download the library: Download stubbles/console library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$inputStream = $executor->executeAsync('git clone git://github.com/stubbles/stubbles-console.git');
// ... do some other work here ...
while (!$inputStream->eof()) {
echo $inputStream->readLine();
}
foreach ($executor->outputOf('git clone git://github.com/stubbles/stubbles-console.git') as $line) {
echo $line;
}