aist / console
Console
dev-master / 1.0.x-dev
2017-07-23 14:19 UTC
Requires
- php: ^7.0
- container-interop/container-interop: ^1.2
- symfony/console: ^3.0 || ^2.8
Requires (Dev)
- malukenho/docheader: ^0.1.5
- mikey179/vfsstream: ^1.6.4
- mmoreram/php-formatter: ^1.3
- mockery/mockery: ^0.9.8
- php-mock/php-mock-phpunit: ^2.0 || ^1.1.2
- phpunit/phpunit: ^6.0.7 || ^5.7.14
- satooshi/php-coveralls: ^1.0
- symfony/var-dumper: ^3.3
- zendframework/zend-coding-standard: ~1.0.0
This package is not auto-updated.
Last update: 2020-01-10 16:13:38 UTC
README
container-interop console.
Installation
Install via composer:
$ composer require aist/console
zf-component-installer
If you use zf-component-installer, that component will install itself as a module for you.
Configuration
Register your commands and helpers in config
// console.global.php return [ 'console' => [ 'commands' => [ YourCommand::class, ], 'helpers' => [ ], ], ];