CLI Console for Cherry-project.
Install from composer composer require cherry-project/console
Next you must create executable PHP script (Ex.: console).
Note Add this line at top of your console for executing
it in PHP interpreter: #!/usr/bin/env php
Include Autoloader in console
require_once __DIR__ . '/vendor/autoload.php';
Import classes
use Cherry\Console\Console;
use Cherry\Kernel;
Create new Kernel and Console instance
$app = new Kernel(__DIR__);
$console = new Console();
Now you can get console help message:
php console --help
or
./console --help
2019 © Cherry-project