yusukezzz / consolet
Installs: 46
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/yusukezzz/consolet
Requires
- php: >=5.4.0
- illuminate/console: 4.2.*
- illuminate/filesystem: 4.2.*
- illuminate/support: 4.2.*
- pimple/pimple: 3.*
- symfony/process: 2.4.*
Requires (Dev)
- mockery/mockery: dev-master
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2025-09-27 19:34:00 UTC
README
simple cui application framework
install
composer require yusukezzz/consolet:dev-master
usage
$console = \Consolet\Application::start(); $exit_cd = $console->run();
add your command
<?php // cmd.php require __DIR__ . '/vendor/autoload.php'; class HelloCommand extends \Consolet\Command { // this command name is hello (auto set by Class name) // if you want to change it, edit $name property //protected $name = 'hey'; public function fire() { $this->line('Hello World!'); } } $console = \Consolet\Application::start(); $console->add(new HelloCommand); exit($console->run());
exec in terminal
$ php cmd.php hello
Hello World!
using DI Container (Pimple)
<?php // cmd.php require __DIR__ . '/vendor/autoload.php'; class HogeCommand extends \Consolet\Command { public function fire() { $this->line($this->container['hoge']); } } $console = \Consolet\Application::start(['hoge' => 'huga']); // or \Consolet\Application::start(new \Pimple(['hoge' => 'huga'])); $console->add(new HogeCommand); exit($console->run());
generate new command
$ php cmd.php generate:command hoge --output=path/to/commands
output: /path/to/commands/HogeCommand.php
Command created successfully.
License
MIT