All Projects → mezzio → mezzio-tooling

mezzio / mezzio-tooling

Licence: BSD-3-Clause license
Migration and development tooling for Mezzio

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to mezzio-tooling

Js Refactor
JS Refactoring tool for Visual Studio Code
Stars: ✭ 195 (+1292.86%)
Mutual labels:  tooling
docker-compose-laravel
A Docker Compose setup for Laravel projects.
Stars: ✭ 23 (+64.29%)
Mutual labels:  tooling
s3-concat
Concatenate Amazon S3 files remotely using flexible patterns
Stars: ✭ 32 (+128.57%)
Mutual labels:  tooling
Orchard
A fertile ground for Clojure tooling
Stars: ✭ 219 (+1464.29%)
Mutual labels:  tooling
storybook-addon-props
React Storybook Addon to show component properties and stories into panels
Stars: ✭ 22 (+57.14%)
Mutual labels:  tooling
petstore
A simple skeleton to build api's based on the chubbyphp-framework, mezzio (former zend-expressive) or slim.
Stars: ✭ 34 (+142.86%)
Mutual labels:  mezzio
Tooling
🧰 Up-to-date list of JavaScript and TypeScript tooling resources
Stars: ✭ 181 (+1192.86%)
Mutual labels:  tooling
npmtooling
This is the repository for my course, Tooling with NPM Scripts on LinkedIn Learning and Lynda.com.
Stars: ✭ 13 (-7.14%)
Mutual labels:  tooling
Daxif
A framework for automating a lot of xRM development processses. By using simple F# script commands/files one can save a lot of time and effort during this process by using Delegates DAXIF# library.
Stars: ✭ 37 (+164.29%)
Mutual labels:  tooling
fliphub
the easiest app builder
Stars: ✭ 30 (+114.29%)
Mutual labels:  tooling
Bootboot
Dualboot your Ruby app made easy
Stars: ✭ 239 (+1607.14%)
Mutual labels:  tooling
swift-watch
Watches over your Swift project's source
Stars: ✭ 43 (+207.14%)
Mutual labels:  tooling
mezzio-cors
CORS component for Mezzio and other PSR-15 middleware runners.
Stars: ✭ 13 (-7.14%)
Mutual labels:  mezzio
Profilinggo
A quick tour (or reminder) of Go performance tools
Stars: ✭ 219 (+1464.29%)
Mutual labels:  tooling
covid-data-pipeline
Scan/Trim/Extra Pipeline for State Coronavirus Site
Stars: ✭ 15 (+7.14%)
Mutual labels:  tooling
Nix Index
Quickly locate nix packages with specific files
Stars: ✭ 197 (+1307.14%)
Mutual labels:  tooling
analysis-flow
Data Analysis Workflows & Reproducibility Learning Resources
Stars: ✭ 108 (+671.43%)
Mutual labels:  tooling
graphql-action
A GitHub Action to send queries to GitHub's GraphQL API
Stars: ✭ 70 (+400%)
Mutual labels:  tooling
covid19-datafetcher
Fetch COVID19 data published by US states.
Stars: ✭ 32 (+128.57%)
Mutual labels:  tooling
cljs-tooling
[DEPRECATED] Tooling support for ClojureScript
Stars: ✭ 58 (+314.29%)
Mutual labels:  tooling

mezzio-tooling

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.

Previous versions

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',
    ],
];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].