承接 alextartan/mezzio-symfony-console 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

CI codecov Mutation testing badge Downloads

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.87k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-01-20