zendframework / zend-mvc
Zend Framework's event-driven MVC layer, including MVC Applications, Controllers, and Plugins
Installs: 13 986 893
Dependents: 676
Suggesters: 16
Security: 0
Stars: 107
Watchers: 47
Forks: 98
Open Issues: 35
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
- dev-next / 4.0.x-dev
- dev-develop / 3.2.x-dev
- dev-master / 3.1.x-dev
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.7.15
- 2.7.14
- 2.7.13
- 2.7.12
- 2.7.11
- 2.7.10
- 2.7.9
- 2.7.8
- 2.7.7
- 2.7.6
- 2.7.5
- 2.7.4
- 2.7.3
- 2.7.2
- 2.7.1
- 2.7.0
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.13
- 2.4.12
- 2.4.11
- 2.4.10
- 2.4.9
- 2.4.8
- 2.4.7
- 2.4.6
- 2.4.5
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.4.0rc7
- 2.4.0rc6
- 2.4.0rc5
- 2.4.0rc4
- 2.4.0rc3
- 2.4.0rc2
- 2.4.0rc1
- 2.3.9
- 2.3.8
- 2.3.7
- 2.3.6
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.10
- 2.2.9
- 2.2.8
- 2.2.7
- 2.2.6
- 2.2.5
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.2.0rc3
- 2.2.0rc2
- 2.2.0rc1
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- dev-release-2.7
- dev-legacy
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.
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/