An open API service indexing awesome lists of open source software.

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 优化项目

Awesome Lists containing this project

README

          

# x-phalcon-console

[![Build Status](https://travis-ci.org/limingxinleo/x-phalcon-console.svg?branch=master)](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);
~~~