Clip provides a framework for building comprehensive CLI based applications on top of Genesis.
Install via Composer:
composer require decodelabs/clip
Clip is a middleware library that provides an out-of-the-box setup for implementing a Genesis based CLI task runner. This means you don't really interact with it much directly, except when setting up the core of your task running infrastructure.
Define your Genesis Hub by extending Clip's abstract implementation:
namespace MyThing;
use DecodeLabs\Archetype;
use DecodeLabs\Clip\Hub as ClipHub;
use DecodeLabs\Commandment\Action as ActionInterface;
use MyThing\Action;
class Hub extends ClipHub
{
public function initializePlatform(): void
{
parent::initializePlatform();
// Load tasks from local namespace
$archetype = $this->container->get(Archetype::class);
$archetype->map(ActionInterface::class, Action::class);
}
}
With this hub in place, you can run tasks defined in your nominated namespace from the terminal via a bin defined in composer:
namespace MyThing;
use DecodeLabs\Genesis\Bootstrap\Bin as BinBootstrap;
use MyThing\Hub;
require_once $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
new BinBootstrap(Hub::class)->run();
{
"bin": [
"bin/thing"
]
}
Define your task:
namespace MyThing\Action;
use DecodeLabs\Commandment\Action;
use DecodeLabs\Commandment\Request;
class MyAction implements Action
{
public function execute(
Request $request
): bool {
// Do the thing
return true;
}
}
composer exec thing my-action
# or with effigy
effigy thing my-action
When writing back to the terminal, you can use a Terminus\Session
:
use DecodeLabs\Monarch;
use DecodeLabs\Terminus\Session;
$io = Monarch::getService(Session::class);
$io->$writeLine('Hello world');
To make your Actions as portable as possible, you should import the Terminus Session
in your Action constructor using Commandment's dependency injection:
namespace MyThing\Action;
use DecodeLabs\Commandment\Action;
use DecodeLabs\Commandment\Request;
use DecodeLabs\Terminus\Session;
class MyAction implements Action
{
public function __construct(
private Session $io
) {
}
public function execute(
Request $request
): bool {
$this->io->writeLine('Hello world');
return true;
}
}
Then, any calling code can provide an alternative Session
instance to the Dispatcher
to allow your Action to run in a different context.
Clip is licensed under the MIT License. See LICENSE for the full license text.