alextartan/mezzio-symfony-console
最新稳定版本:3.1.0
Composer 安装命令:
composer require alextartan/mezzio-symfony-console
包简介
This project adds a executable file to the composer bin folder to run symfony commands under a mezzio application environment.
README 文档
README
mezzio symfony console
This project adds a executable file to the composer bin folder to run symfony commands under a zend-expressive application environment.
Installation
Requirements
- PHP 8.2
- a config/container.php file (returns a ContainerInterface instance)
Composer installation
$ composer require alextartan/mezzio-symfony-console
Configuration
zend-expressive configuration
Add the \AlexTartan\Mezzio\SymfonyConsole\ConfigProvider to the config/config.php file.
Configuration of the symfony console application
- Add this configuration to your application config (ex.: config/autoload/mezzio-sf-console.global.php).
- It is recommended to define the command name.
[ 'mezzio-symfony-console' => [ 'name' => 'Console Name', 'version' => '1.0.0', // optional 'commands' => [ // add the command service names here // ex.: 'foo:bar' => Command::class, // recommended, lazy // ex.: Command::class, // not lazy ], ], 'dependencies' => [ 'factories' => [ // add commands as a service to the container // ex.: Command::class => CommandFactory::class, ], ], ],
Run commands
This module adds a executable file under the composer bin directory to execute symfony commands.
$ vendor/bin/mezzio-sf-console list
统计信息
- 总下载量: 34.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04