limingxinleo / x-phalcon-console
此包最新版本(1.0.1)没有提供许可信息。
1.0.1
2018-05-04 03:10 UTC
Requires
- php: >=5.6
- ext-phalcon: ^3.0
- symfony/finder: ^3.3
Requires (Dev)
- phalcon/dd: ^1.1
- phpunit/phpunit: >=5.6
This package is auto-updated.
Last update: 2024-09-17 19:31:18 UTC
README
安装
composer require limingxinleo/x-phalcon-console
使用
<?php use Xin\Phalcon\Cli\XConsole; use Phalcon\DI\FactoryDefault\Cli; // Your Method To Get DI; $di = new Cli(); $di->setShared('dispatcher', function () { $dispatcher = new \Phalcon\Cli\Dispatcher(); // Your Default Namespace $dispatcher->setDefaultNamespace('App\\Tasks'); return $dispatcher; }); $xconsole = new XConsole($di); $xconsole->handle($argv);