laminas / laminas-mvc
Laminas's event-driven MVC layer, including MVC Applications, Controllers, and Plugins
Fund package maintenance!
Community Bridge
Installs: 1 815 980
Dependents: 230
Suggesters: 6
Security: 0
Stars: 66
Watchers: 22
Forks: 28
Open Issues: 43
Requires
- php: ^7.3 || ~8.0.0
- container-interop/container-interop: ^1.2
- laminas/laminas-eventmanager: ^3.2
- laminas/laminas-http: ^2.7
- laminas/laminas-modulemanager: ^2.8
- laminas/laminas-router: ^3.0.2
- laminas/laminas-servicemanager: ^3.3
- laminas/laminas-stdlib: ^3.2.1
- laminas/laminas-view: ^2.11.3
- laminas/laminas-zendframework-bridge: ^1.0
Requires (Dev)
- http-interop/http-middleware: ^0.4.1
- laminas/laminas-coding-standard: ^1.0.0
- laminas/laminas-json: ^2.6.1 || ^3.0
- laminas/laminas-psr7bridge: ^1.0
- laminas/laminas-stratigility: >=2.0.1 <2.2
- phpspec/prophecy-phpunit: ^2.0
- phpunit/phpunit: ^9.4.2
Suggests
- laminas/laminas-json: (^2.6.1 || ^3.0) To auto-deserialize JSON body content in AbstractRestfulController extensions, when json_decode is unavailable
- laminas/laminas-log: ^2.9.1 To provide log functionality via LogFilterManager, LogFormatterManager, and LogProcessorManager
- laminas/laminas-mvc-console: laminas-mvc-console provides the ability to expose laminas-mvc as a console application
- laminas/laminas-mvc-i18n: laminas-mvc-i18n provides integration with laminas-i18n, including a translation bridge and translatable route segments
- laminas/laminas-mvc-middleware: To dispatch middleware in your laminas-mvc application
- laminas/laminas-mvc-plugin-fileprg: To provide Post/Redirect/Get functionality around forms that container file uploads
- laminas/laminas-mvc-plugin-flashmessenger: To provide flash messaging capabilities between requests
- laminas/laminas-mvc-plugin-identity: To access the authenticated identity (per laminas-authentication) in controllers
- laminas/laminas-mvc-plugin-prg: To provide Post/Redirect/Get functionality within controllers
- laminas/laminas-paginator: ^2.7 To provide pagination functionality via PaginatorPluginManager
- laminas/laminas-servicemanager-di: laminas-servicemanager-di provides utilities for integrating laminas-di and laminas-servicemanager in your laminas-mvc application
Replaces
- zendframework/zend-mvc: ^3.1.1
- 4.0.x-dev
- 3.2.x-dev
- 3.2.0
- 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
- 2.0.2
- 2.0.1
- 2.0.0
- dev-3.2.x-merge-up-into-4.0.x_5fd7df28cda903.31182351
This package is auto-updated.
Last update: 2021-02-14 22:33:49 UTC
README
Laminas\Mvc
is an MVC implementation focusing on performance and flexibility.
The MVC layer is built on top of the following components:
-
Laminas\ServiceManager
- Laminas provides a set of default service definitions set up atLaminas\Mvc\Service
. The ServiceManager creates and configures your application instance and workflow. -
Laminas\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. -
Laminas\Http
- specifically the request and response objects, used within:Laminas\Stdlib\DispatchableInterface
. All “controllers” are simply dispatchable objects. -
File issues at https://github.com/laminas/laminas-mvc/issues
-
Documentation is at https://docs.laminas.dev/laminas-mvc/