Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
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.
Install via composer:
$ composer require --dev mezzio/mezzio-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 themezzio: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-diactorosHtmlResponse
.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.
Versions of mezzio/mezzio-tooling prior to v2.0 exposed a
vendor/bin/mezzio
binary, and the various commands exposed all lacked themezzio:
prefix, with the following more specific changes:
mezzio:middleware:migrate-from-interop
was previouslymigrate:interop-middleware
mezzio:middleware:to-request-handler
was previouslymigrate:middleware-to-request-handler
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',
],
];