zazalt / konzola
Konzola
dev-master
2017-03-06 23:43 UTC
Requires
- php: >=7.1.0
This package is not auto-updated.
Last update: 2025-01-04 22:03:16 UTC
README
Requirements
- php >= 7.1.0
Packagist Dependencies
- None
Installation
With composer:
{ "require": { "zazalt/konzola": "dev-master" } }
Usage
require_once is_dir('../vendor/') ? '../vendor/autoload.php' : 'vendor/autoload.php'; \Zazalt\Konzola\Konzola::text('This is a rainbow.')->rainbow();
require_once is_dir('../vendor/') ? '../vendor/autoload.php' : 'vendor/autoload.php'; $Konzola = new \Zazalt\Konzola\Konzola(); /** * Usage: * php example2.php theCommand -a --b --c lorem -d ipsum */ echo 'Given command: '. $Konzola->getCommand() ."\n"; echo '--c argument: '. $Konzola->getArgument('c') ."\n"; echo 'Given arguments: '; print_r($Konzola->getArguments());