Files
php-shell/examples/basic.php
T
2016-11-15 03:29:00 +01:00

13 lines
223 B
PHP

<?php
require_once __DIR__."/../vendor/autoload.php";
use NoccyLabs\Shell\Shell;
use NoccyLabs\Shell\Context;
$myShell = new Shell();
$myShell->setPrompt("test>");
$myShell->pushContext(new Context());
$myShell->run();