Laravel Command Utils
Add util methods to laravel commands. Require Laravel/Lumen framework >= 5.0., (*1)
Installation
To get started with Command Utils, simply run:, (*2)
composer require madnh/laravel-command-util
Basic Usage
From your command, use MaDnh\LaravelCommandUtil\CommandUtil
trait, (*3)
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use MaDnh\LaravelCommandUtil\CommandUtil;
class FooCommand extends Command
{
use CommandUtil;
//...
}
Methods
Banners
$this->banner('message'[, $options_as_array])
, (*4)
$this->softBanner('message'[, $options_as_array])
, (*5)
$this->header('message'[, $options_as_array])
, (*6)
$this->softHeader('message'[, $options_as_array])
, (*7)
Titles
$this->title('message'[, $options_as_array])
, (*8)
$this->softTitle('message'[, $options_as_array])
, (*9)
Paragraph Title
$this->paragraphTitle('message'[, $options_as_array])
, (*10)
Ordered List
$this->orderedList($items[, $options_as_array])
, (*11)
Unordered List
$this->unorderedList($items[, $list_item_char])
, (*12)
Continue to use previous ordered list index
$this->softTitle('Accusamus ea sit eos iusto dolore nemo.');
$index = $this->orderedList($items);
$this->softTitle('Aliquid quam ea error provident et.');
$this->orderedList($items, $index);
, (*13)
Dynamic ordered lists
$this->softTitle('Publish files');
while($file = array_shift($files)){
$this->line($this->getListIndex().$file->getFilename());
}
, (*14)
Reset dynamic ordered list index
$this->softTitle('Ut qui suscipit sequi sed.');
foreach ($items as $item) {
$this->line($this->getListIndex().$item);
}
$this->resetOrderedList(30);
$this->softTitle('Eum beatae ea qui non aliquam.');
foreach ($items as $item) {
$this->line($this->getListIndex().$item);
}
, (*15)