CLI Console for Cherry-project

v1.7.1 2019-05-05 19:44 UTC

This package is auto-updated.

Last update: 2024-04-06 06:34:16 UTC


README

CLI Console for Cherry-project.

GitHub license

GitHub release

Packagist Version

Including

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

Usage

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