
PSR-15 middleware in minutes!
Zend-expressive is a PHP middleware framework that allows users to develop PSR-7 middleware applications quickly. It is built on zend-stratigility and offers features like routing with support for various routers, DI containers through PSR-11 Container, and optional templating support. The framework helps developers build minimalist and efficient PHP applications.
composer create-project zendframework/zend-expressive-skeleton <project dir>
composer require zendframework/zend-expressive
composer require zendframework/zend-expressive-aurarouter
composer require zendframework/zend-expressive-fastroute
composer require zendframework/zend-expressive-zendrouter
composer require zendframework/zend-servicemanager
composer require zendframework/zend-pimple-config
composer require zendframework/zend-auradi-config
Zend-expressive is a powerful PHP middleware framework that simplifies the development of PSR-7 middleware applications. With its flexible routing options, support for DI containers, and optional templating engines, developers can quickly build efficient and customizable PHP applications. Installation can be done using a skeleton project with an installer or manually via Composer, making it easy to set up and get started with the framework.
