nopoco / laminas-mvc
Laminas's event-driven MVC layer, including MVC Applications, Controllers, and Plugins
Requires
- php: ~8.0.0 || ~8.1.0 || ~8.2.0
- container-interop/container-interop: ^1.2
- laminas/laminas-eventmanager: ^3.4
- laminas/laminas-http: ^2.15
- laminas/laminas-modulemanager: ^2.8
- laminas/laminas-router: ^3.11.1
- laminas/laminas-servicemanager: ^3.20.0
- laminas/laminas-stdlib: ^3.6
- laminas/laminas-view: ^2.14
Requires (Dev)
- laminas/laminas-coding-standard: ^2.4.0
- laminas/laminas-json: ^3.3
- phpspec/prophecy: ^1.15.0
- phpspec/prophecy-phpunit: ^2.0.1
- phpunit/phpunit: ^9.5.25
- webmozart/assert: ^1.11
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
Conflicts
README
Removed political appeal incompatible with free software here. The original repository is at this link.
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/