https://github.com/limingxinleo/x-phalcon-console
Phalcon Console 优化项目
https://github.com/limingxinleo/x-phalcon-console
console phalcon php
Last synced: 8 months ago
JSON representation
Phalcon Console 优化项目
- Host: GitHub
- URL: https://github.com/limingxinleo/x-phalcon-console
- Owner: limingxinleo
- Created: 2017-09-09T11:17:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T03:25:09.000Z (about 8 years ago)
- Last Synced: 2025-09-05T20:59:13.239Z (9 months ago)
- Topics: console, phalcon, php
- Language: PHP
- Size: 18.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# x-phalcon-console
[](https://travis-ci.org/limingxinleo/x-phalcon-console)
## 安装
~~~
composer require limingxinleo/x-phalcon-console
~~~
## 使用
~~~php
setShared('dispatcher', function () {
$dispatcher = new \Phalcon\Cli\Dispatcher();
// Your Default Namespace
$dispatcher->setDefaultNamespace('App\\Tasks');
return $dispatcher;
});
$xconsole = new XConsole($di);
$xconsole->handle($argv);
~~~