zendframework/zend-mvc
Zend Framework's event-driven MVC layer, including MVC Applications, Controllers, and Plugins
Requires
- php: ^5.6 || ^7.0
- container-interop/container-interop: ^1.2
- zendframework/zend-eventmanager: ^3.2
- zendframework/zend-http: ^2.7
- zendframework/zend-modulemanager: ^2.8
- zendframework/zend-router: ^3.0.2
- zendframework/zend-servicemanager: ^3.3
- zendframework/zend-stdlib: ^3.1
- zendframework/zend-view: ^2.9
Requires (Dev)
- http-interop/http-middleware: ^0.4.1
- phpunit/phpunit: ^6.4.4 || ^5.7.14
- zendframework/zend-coding-standard: ~1.0.0
- zendframework/zend-json: ^2.6.1 || ^3.0
- zendframework/zend-psr7bridge: ^1.0
- zendframework/zend-stratigility: ^2.0.1
Suggests
- http-interop/http-middleware: ^0.4.1 to be used together with zend-stratigility
- zendframework/zend-json: (^2.6.1 || ^3.0) To auto-deserialize JSON body content in AbstractRestfulController extensions, when json_decode is unavailable
- zendframework/zend-log: ^2.9.1 To provide log functionality via LogFilterManager, LogFormatterManager, and LogProcessorManager
- zendframework/zend-mvc-console: zend-mvc-console provides the ability to expose zend-mvc as a console application
- zendframework/zend-mvc-i18n: zend-mvc-i18n provides integration with zend-i18n, including a translation bridge and translatable route segments
- zendframework/zend-mvc-plugin-fileprg: To provide Post/Redirect/Get functionality around forms that container file uploads
- zendframework/zend-mvc-plugin-flashmessenger: To provide flash messaging capabilities between requests
- zendframework/zend-mvc-plugin-identity: To access the authenticated identity (per zend-authentication) in controllers
- zendframework/zend-mvc-plugin-prg: To provide Post/Redirect/Get functionality within controllers
- zendframework/zend-paginator: ^2.7 To provide pagination functionality via PaginatorPluginManager
- zendframework/zend-psr7bridge: (^0.2) To consume PSR-7 middleware within the MVC workflow
- zendframework/zend-servicemanager-di: zend-servicemanager-di provides utilities for integrating zend-di and zend-servicemanager in your zend-mvc application
- zendframework/zend-stratigility: zend-stratigility is required to use middleware pipes in the MiddlewareListener
Provides
None
Conflicts
None
Replaces
None
BSD-3-Clause 236e7e1e3757e988fa06530c0a3f96a148858ae8
This package is auto-updated.
Last update: 2020-11-03 15:58:10 UTC
README
Repository abandoned 2019-12-31
This repository has moved to laminas/laminas-mvc.
π Build Status
π Coverage Status
Zend\Mvc is a brand new MVC implementation designed from the ground up for
Zend Framework 2, focusing on performance and flexibility.
The MVC layer is built on top of the following components:
-
Zend\ServiceManager- Zend Framework provides a set of default service definitions set up atZend\Mvc\Service. The ServiceManager creates and configures your application instance and workflow. -
Zend\EventManager- The MVC is event driven. This component is used everywhere from initial bootstrapping of the application, through returning response and request calls, to setting and retrieving routes and matched routes, as well as render views. -
Zend\Http- specifically the request and response objects, used within:Zend\Stdlib\DispatchableInterface. All βcontrollersβ are simply dispatchable objects. -
File issues at https://github.com/zendframework/zend-mvc/issues
-
Documentation is at https://docs.zendframework.com/zend-mvc/
