zendframework / zend-mvc
3.1.1
2017-11-24 06:32 UTC
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
仓库已废弃于2019年12月31日
此仓库已迁移至laminas/laminas-mvc。
Zend\Mvc
是一个全新的MVC实现,从头开始为Zend Framework 2设计,侧重于性能和灵活性。
MVC层基于以下组件构建
-
Zend\ServiceManager
- Zend Framework提供了一套默认服务定义,在Zend\Mvc\Service
中设置。ServiceManager创建并配置您的应用程序实例和工作流程。 -
Zend\EventManager
- MVC是事件驱动的。该组件用于从应用的初始启动到返回响应和请求调用,再到设置和检索路由以及匹配的路由,以及渲染视图的各个方面。 -
Zend\Http
- 尤其是请求和响应对象,在Zend\Stdlib\DispatchableInterface
中使用。所有“控制器”都是简单的可调度对象。