Commander
The solution for php command-line interfaces, inspired by commander in Node.js., (*1)
Actually some funtions in Commander is refer to commander, so really thank TJ., (*2)
Installation
$ composer require "lijinma/commander"
Option parsing
Options with commander are defined with the option() method, also serving as documentation for the options. The example below parses args and options from $argv., (*3)
<?php
use Lijinma\Commander;
require __DIR__ . '/vendor/autoload.php';
$cmd = new Commander();
$cmd
->version('0.0.1')
->option('-p, --peppers', 'Add peppers')
->option('-P, --pineapple', 'Add pineapple')
->option('-b, --bbq', 'Add bbq sauce')
->option('-c, --cheese [type]', 'Add the specified type of cheese')
->parse($argv);
echo 'you ordered a pizza with:' . PHP_EOL;
if (isset($cmd->peppers)) {
echo ' - peppers' . PHP_EOL;
}
if (isset($cmd->pineapple)) {
echo ' - pineapple' . PHP_EOL;
}
if (isset($cmd->bbq)) {
echo ' - bbq' . PHP_EOL;
}
if (isset($cmd->cheese)) {
echo " - $cmd->cheese cheese" . PHP_EOL;
}
, (*4)
Short flags may be passed as a single arg, for example -abc is equivalent to -a -b -c., (*5)
Sub commands
<?php
use Lijinma\Commander;
require __DIR__ . '/vendor/autoload.php';
$cmd = new Commander();
$cmd
->version('0.0.1')
->command('rmdir <dir> [otherDirs...]', 'Remove the directory')
->action(
function ($dir, $otherDirs) {
echo 'You will remove the following directory: ' . $dir . PHP_EOL;
if ($otherDirs) {
echo 'And other directories: ' . implode(', ', $otherDirs) . PHP_EOL;
}
}
);
$cmd->command('rm <file>', 'Remove a file')
->action(
function ($file) {
echo 'You will remove the following file: ' . $file . PHP_EOL;
}
);
$cmd->parse($argv);
, (*6)
Every command has one action., (*7)
Automated --help
I really don't like the help generated by Symfony/Console, it's complicated and heavy., (*8)
Usage: test.php [options]
Commands:
rmdir <dir> [otherDirs...] Remove the directory
rm <file> Remove a file
Options:
-h, --help Output usage information
Test Commander
I use PHPSpec to do unit test. PHPSpec is an awesome test framework., (*9)
$ composer install
$ phpspec run
License
Commander is released under the MIT license:, (*10)
The MIT License, (*11)
Copyright (c) 2014 Jinma Li < lijinma@126.com >, (*12)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:, (*13)
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software., (*14)
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE., (*15)