定制 mezzio/mezzio-tooling 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

mezzio/mezzio-tooling

Composer 安装命令:

composer require mezzio/mezzio-tooling

包简介

Migration and development tooling for Mezzio

README 文档

README

Build Status

🇷🇺 Русским гражданам

Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.

У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.

Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"

🇺🇸 To Citizens of Russia

We at Laminas come from all over the world. Many of us have friends, family and colleagues in both Russia and Ukraine. Some of us were born in Russia. Some of us currently live in Russia. Some have grandparents who fought Nazis in World War II. Nobody here supports fascism.

One team member has a Ukrainian relative who fled her home with her son. The train was delayed due to bombing on the road ahead. We have friends who are hiding in bomb shelters. We anxiously follow up on them after the air raids, which indiscriminately fire at hospitals, schools, kindergartens and houses. We're not taking this from any media. These are our actual experiences.

You trust us enough to use our software. We ask that you trust us to say the truth on this. We need your help. Go out and protest this unnecessary war. Stop the bloodshed. Say "stop the war!"

Migration and development tools for Mezzio.

Installation

Install via composer:

$ composer require --dev mezzio/mezzio-tooling

Command line tooling

This package exposes commands for laminas-cli, and may be invoked via vendor/bin/laminas.

  • mezzio:action:create: Create an action class file; this is an alias for the mezzio:handler:create command, listed below.
  • mezzio:factory:create: Create a factory class file for the named class. The class file is created in the same directory as the class specified.
  • mezzio:handler:create: Create a PSR-15 request handler class file. Also generates a factory for the generated class, and, if a template renderer is registered with the application container, generates a template and modifies the class to render it into a laminas-diactoros HtmlResponse.
  • mezzio:middleware:create: Create a PSR-15 middleware class file.
  • mezzio:middleware:migrate-from-interop: Migrate interop middlewares and delegators to PSR-15 middlewares and request handlers.
  • mezzio:middleware:to-request-handler: Migrate PSR-15 middleware to request handlers.
  • mezzio:module:create: Create and register a middleware module with the application.
  • mezzio:module:deregister: Deregister a middleware module from the application.
  • mezzio:module:register: Register a middleware module with the application.
  • mezzio:routes:list: List the application's routing table.

Routes

mezzio:routes:list

This command lists the application's routing table. For each route, it prints its name, path, middleware, and any additional options, in a tabular format to the terminal. The routes are listed in no particular order, by default.

The command supports several options, listed in the table below.

Command Long Command Short Description
--format -f Set the format of the command's output. The supported values are table, which is the default, and json. If you set the format to json, then we recommend using jq to query/filter the command's output.
--sort -s Sort the command's output. The supported values are name and path.
--supports-method -m Accepts a comma-separated list of one or more HTTP methods, and filters out routes which don't support those methods.
--has-path -p Accepts a comma-separated list of one or more paths, and filters out routes with paths that don't match. The paths can be a regular expression, supported by the preg_* functions. For example, "/,/api/ping,*/ping".
--has-name -n Accepts a comma-separated list of one or more names, and filters out routes with names that don't match. The names can be fixed strings, or regular expressions supported by the preg_* functions. For example, "user,user.register,.register,user".
--has-middleware -w Accepts a comma-separated list of one or more middleware classes, and filters out routes that do not require those classes. The classes can be fully-qualified, unqualified, or a regular expression, supported by the preg_* functions. For example, "\Mezzio\Middleware\LazyLoadingMiddleware,LazyLoadingMiddleware,\Mezzio*".
Configuration

By default, Mezzio\Tooling\Routes\DefaultRoutesConfigLoaderFactory registers a ConfigLoaderInterface service with the application's DI container, which retrieves the application's routes from two sources:

  • config/routes.php
  • Routes registered by any loaded ConfigProvider class

However, this is a default/fallback implementation. If you don't store any routes in config/routes.php or need a custom implementation, then you need to do two things:

  1. Write a custom loader implementation that implements Mezzio\Tooling\Routes\ConfigLoaderInterface
  2. Register it with the application's DI container as an alias for Mezzio\Tooling\Routes\ConfigLoaderInterface
Usage Example

Here is an example of what you can expect from running the command.

$ mezzio:routes:list

+----------+-----------+---------+ Routes ---------------------------------+
| Name     | Path      | Methods | Middleware                              |
+----------+-----------+---------+-----------------------------------------+
| api.ping | /api/ping | GET     | Mezzio\Middleware\LazyLoadingMiddleware |
| home     | /         | GET     | Mezzio\Middleware\LazyLoadingMiddleware |
+----------+-----------+---------+-----------------------------------------+

Here is an example of what you can expect from running the command and setting the format to json (formatted with jq).

$ mezzio:routes:list --format=json | jq

[
  {
    "name": "api.ping",
    "path": "/api/ping",
    "methods": "GET",
    "middleware": "Mezzio\\Middleware\\LazyLoadingMiddleware"
  },
  {
    "name": "home",
    "path": "/",
    "methods": "GET",
    "middleware": "Mezzio\\Middleware\\LazyLoadingMiddleware"
  }
]

Note

Versions of mezzio/mezzio-tooling prior to v2.0 exposed a vendor/bin/mezzio binary, and the various commands exposed all lacked the mezzio: prefix, with the following more specific changes:

  • mezzio:middleware:migrate-from-interop was previously migrate:interop-middleware
  • mezzio:middleware:to-request-handler was previously migrate:middleware-to-request-handler

Configurable command option values

If the --modules-path of your project is not under src, you can either provide the path via the --modules-path command-line option, or configure it within your application configuration. By adding the changed path to your application configuration, you can omit the need to use the --modules-path option during cli execution for the various mezzio:module:* commands.

// In config/autoload/application.global.php:

<?php

declare(strict_types = 1);

use Mezzio\Tooling\Module\CommandCommonOptions;

return [
    /* ... */
    CommandCommonOptions::class => [
        '--modules-path' => 'custom-directory',
    ],
];

mezzio/mezzio-tooling 适用场景与选型建议

mezzio/mezzio-tooling 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.17M 次下载、GitHub Stars 达 19, 最近一次更新时间为 2019 年 12 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「http」 「middleware」 「psr」 「psr-7」 「laminas」 「mezzio」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 mezzio/mezzio-tooling 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 mezzio/mezzio-tooling 我们能提供哪些服务?
定制开发 / 二次开发

基于 mezzio/mezzio-tooling 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1.17M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 19
  • 点击次数: 22
  • 依赖项目数: 21
  • 推荐数: 2

GitHub 信息

  • Stars: 19
  • Watchers: 11
  • Forks: 16
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2019-12-31