Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Zend Mvc Laravel Package

zendframework/zend-mvc

Zend\Mvc is Zend Framework’s MVC layer for building PHP web apps. It provides routing, controllers, dispatching, request/response handling, view integration, and an event-driven pipeline. Designed for modular apps and flexible configuration.

View on GitHub
Deep Wiki
Context7
release-2.7.15

Added

  • Nothing.

Changed

  • #245 moves the zend-console dependency from require-dev to require, as it is a requirement of the RequestFactory, and removal of the package causes that factory to fail.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.
release-2.7.14

Added

  • #279 provides support for PHP 7.1 and 7.2.

Changed

  • #279 changes the Zend\Mvc\Controller\PluginManager implementation to vary based on zend-servicemanager major version detected in order to ensure the signature of get() will be correct regardless of version.

Deprecated

  • Nothing.

Removed

  • #279 removes explicit support for PHP 5.5. The code may, and likely will, continue to run on the 5.5 series, but we are unable to continue testing it at this time as dependencies necessary for PHP 7.2 support have all bumped their minimum versions to PHP 5.6. If you use PHP 5.5, upgrade at your own risk.

Fixed

  • Nothing.
release-2.7.13

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Updates the Zend\Mvc\Controller\PluginManager::get() signature to match that of Zend\ServiceManager\AbstractPluginManager::get(), and thus ensure compatibility when running under PHP 7.2.

  • #234 fixes docblock annotations in AbstractActionController::indexAction and notFoundAction to indicate they return a ViewModel|ConsoleModel and not array.

release-3.1.1

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #247 fixes bug in controller plugin Forward, introduced in 3.1.0, where problem listeners were not detached for forwarded controller dispatch
release-3.1.0

Added

  • #217 adds support for middleware pipelines when using the MiddlewareListener. You can now specify an _arrayof middleware for themiddlewareattached to a route, and it will be marshaled into aZend\Stratigility\MiddlewarePipe` instance, using the same rules as if you specified a single middleware.

  • #236 adds the ability to attach dispatch listeners to middleware when using the MiddlewareListener. Attach shared events to the class identifier Zend\Mvc\Controller\MiddlewareController. This feature helps ensure that listeners that should run for every controller (e.g., authentication or authorization listeners) will run even for middleware.

  • #231 adds a composer.json suggestion for zendframework/zend-paginator.

  • #232 adds a composer.json suggestion for zendframework/zend-log.

Deprecated

  • Nothing.

Removed

  • #211 Removed unused zend-servicemanager v2 and zend-eventmanager v2 compatibility code since zend-mvc requires v3 of those components.

Fixed

  • #237 fixes the return annotations for HttpDefaultRenderingStrategyFactory::createService and injectLayoutTemplate() to be HttpDefaultRenderingStrategy and not HttpDefaultRendererStrategy.
release-2.7.12

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #235 fixes FormAnnotationBuilderFactory::injectFactory() to pass the correct arguments to the plugin manager's injectFactory() initializer when running under zend-servicemanager v2.
release-2.7.11

Added

  • #233 adds a replace entry to the composer.json indicating the package replaces zendframework/zend-router. This is done to prevent errors from installing both zend-mvc v2 with zend-router, which could lead to subtle errors when checking exceptions, locating route types, etc. Users should upgrade to zend-mvc v3 if they wish to use the standalone zend-router package.

Deprecated

  • Nothing.

Removed

  • #229 removes the zend-version package from the require-dev and suggest sections of composer.json, and updates the RouteNotFoundStrategy::getConsoleBanner() method to no longer use the version constant. Since zend-version has had no real meaning since the 2.5 release, this removes ambiguity for end-users.

Fixed

  • #223 fixes how the FormAnnotationBuilderFactory injects the builder with the FormElementManager service such that it will work with the latest zend-form releases.
release-3.0.4

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #210 copies the RouteMatch and its parameters to the PSR-7 ServerRequest object so that they are available to middleware.
release-3.0.3

Added

  • #198 adds a factory for the SendResponseListener, to ensure that it is injected with an event manager instance from the outset; this fixes issues with delegator factories that registered listeners with it in previous versions.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #184 provides a performance optimization for DELETE requests to AbstractRestfulController instances.
  • #187 removes a typehint for Exception from an argument in DispatchListener::marshalControllerNotFoundEvent(), allowing it to be used with PHP 7 Throwable instances.
release-3.0.2

Added

  • #163 adds support to the AcceptableViewModelSelector plugin for controller maps in the view_manager configuration in the format:

    [
        'ControllerClassName' => 'view/name',
    ]
    

    This fixes an issue observed when running with Apigility.

  • #163 adds support to the InjectTemplateListener for specifying whether or not to prefer the controller matched during routing via routing configuration:

    'route-name' => [
        /* ... */
        'options' => [
            /* ... */
            'defaults' => [
                /* ... */
                'prefer_route_match_controller' => true,
            ],
        ],
    ],
    

    This allows actions that might otherwise skip injection of the template to force the injection.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #161 fixes the DispatchListener::marshalBadControllerEvent() method to allow either Throwable or Exception types for the $exception argument.
release-3.0.1

Added

  • #165 adds a new controller factory, LazyControllerAbstractFactory, that provides a Reflection-based approach to instantiating controllers. You may register it either as an abstract factory or as a named factory in your controller configuration:

    'controllers' => [
        'abstract_factories' => [
            'Zend\Mvc\Controller\LazyControllerAbstractFactory`,
        ],
        'factories' => [
            'MyModule\Controller\FooController' => 'Zend\Mvc\Controller\LazyControllerAbstractFactory`,
        ],
    ],
    

    The factory uses the typehints to lookup services in the container, using aliases for well-known services such as the FilterManager, ValidatorManager, etc. If an array typehint is used with a $config parameter, the config service is injected; otherwise, an empty array is provided. For all other types, a null value is injected.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.
release-2.7.10

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #159 removes the dependency on zend-servicemanager-di.

Fixed

  • #159 fixes issues with regards to conflicts between zend-servicemanager v2 and zend-servicemanager-di by re-instating code removed from various servicemanager/DI-related factories in 2.7.9. Two factories, Zend\Mvc\Service\DiAbstractServiceFactoryFactory and Zend\Mvc\Service\DiServiceInitializerFactory, now raise exceptions if they detect they are running under zend-servicemanager v3, and prompt the developer to install zend-servicemanager-di.
release-3.0.0

New major version! Please see the migration guide for full details on how to migrate your v2 application.

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #99 removes all router functionality (everything in the Zend\Mvc\Router namespace. This functionality is now provided by the zend-router component, which becomes a requirement of zend-mvc. The removal also includes all service factories related to routing, as they are provided by zend-router.
  • #99 removes all console-related functionality, including the AbstractConsoleController, the CreateConsoleNotFoundModel controller plugin, the ConsoleResponseSender, and all classes under the Zend\Mvc\View\Console namespace; these are now provided by the zend-mvc-console component. (That component also includes console-specific routes, which were removed from zend-router.) All service factories related to console functionality are also now provided by zend-mvc-console.
  • #104 removes the prg() plugin. It can now be installed separately via the zendframework/zend-mvc-plugin-prg package.
  • #108 removes the fileprg(), flashMessenger(), and identity() plugins. These can be installed via, respectively, the zendframework/zend-mvc-plugin-fileprg, zendframework/zend-mvc-plugin-flashmessenger, and zendframework/zend-mvc-plugin-identity packages.
  • #110 removes the internationalization functionality from the component, including factories for the translator and translator loader manager. This functionality is now provided by the zend-i18n and zend-mvc-i18n packages; installing zendframework/zend-mvc-i18n will restore i18n functionality in your application.
  • #115 removes the requirement for zend-filter in the InjectTemplateListener by inlining the logic from Zend\Filter\Word\CamelCaseToDash.
  • #116 removes the functionality related to integrating zend-servicemanager and zend-di. If you used this functionality previously, it is now available via a separate package, zend-servicemanager-di.
  • #117 removes the functionality related to exposing and configuring the zend-filter FilterPluginManager. That functionality is now exposed directly by the zend-filter component.
  • #118 removes the functionality related to exposing and configuring the zend-validator ValidatorPluginManager. That functionality is now exposed directly by the zend-validator component.
  • #119 removes the functionality related to exposing and configuring the zend-serializer SerializerAdapterManager. That functionality is now exposed directly by the zend-serializer component.
  • #120 removes the functionality related to exposing and configuring the zend-hydrator HydratorManager. That functionality is now exposed directly by the zend-hydrator component.
  • #54 removes the $configuration argument (first required argument) from the Zend\Mvc\Application constructor. If you were directly instantiating an Application instance previously (whether in your bootstrap, a factory, or tests), you will need to update how you instantiate the instance. (The argument was removed as the value was never used.)
  • #121 removes the functionality related to exposing and configuring the zend-log ProcessorPluginManager and WriterPluginManager. That functionality is now exposed directly by the zend-log component (with the addition of exposing the FilterPluginManager and FormatterPluginManager as well).
  • #123 removes the functionality related to exposing and configuring the zend-inputfilter InputFilterManager. That functionality is now exposed directly by the zend-inputfilter component.
  • #124 removes the functionality related to exposing and configuring zend-form, including the FormElementManager, FormAnnotationBuilder, and the FormAbstractServiceFactory. The functionality is now exposed directly by the zend-form component.
  • #125 removes the functionality from the ViewHelperManager factory for fetching configuration classes from other components and using them to configure the instance. In all cases, this is now done by the components themselves.
  • #128 removes the ControllerLoaderFactory, and the ControllerLoader service alias; use ControllerManagerFactory and ControllerManager, respectively, instead.
  • #128 removes Zend\Mvc\View\SendResponseListener; use Zend\Mvc\SendResponseListener instead.
  • #128 removes Application::send(), which has been a no-op since 2.2.
  • #128 removes DispatchListener::marshallControllerNotFoundEvent(), which has proxied to marshalControllerNotFoundEvent() since 2.2.
  • #128 removes the ServiceLocatorAwareInterface implementation (setServiceLocator()/getServiceLocator() methods) from AbstractController. You will need to inject your dependencies specifically going forward.
  • #128 removes the ServiceLocatorAwareInterface initializers defined in Zend\Mvc\Service\ServiceManagerConfig and Zend\Mvc\Controller\ControllerManager. You will need to inject your dependencies specifically going forward.
  • #139 removes support for pseudo-module template resolution using the __NAMESPACE__ routing configuration option, as it often led to conflicts when multiple modules shared a common top-level namespace. Auto-resolution now always takes into account the full namespace (minus the Controller segment).

Fixed

  • #113 updates AbstractRestfulController to make usage of zend-json for deserializing JSON requests optional. json_decode() is now used by default, falling back to Zend\Json\Json::decode() if it is available. If neither are available, an exception is now thrown.
  • #115 and #128 update the dependency list, per https://github.com/zendframework/maintainers/wiki/zend-mvc-v3-refactor:-reduce-components#required-components, to do the following:
    • Makes the following components required:
      • zend-http
      • zend-modulemanager
      • zend-router
      • zend-view
    • Makes the following components optional:
      • zend-json
      • zend-psr7bridge
    • And pares the suggestion list down to:
      • zend-mvc-console
      • zend-mvc-i18n
      • zend-mvc-plugin-fileprg
      • zend-mvc-plugin-flashmessenger
      • zend-mvc-plugin-identity
      • zend-mvc-plugin-prg
      • zend-servicemanager-di
  • #128 bumps the minimum supported version of zend-eventmanager, zend-servicemanager, and zend-stdlib to their v3 releases.
  • #128 bumps the minimum supported PHP version to 5.6.
release-2.7.9

Added

  • #149 and #158 add a dependency on zendframework/zend-servicemanager-di in order to provide both backwards and forwards compatibility for the DI/ServiceManager integration.

Deprecated

  • #158 deprecates each of the following classes, which now have equivalents in the zend-servicemanager-di package (which is required by zend-mvc v2, but optional starting with zend-mvc v3):
    • Zend\Mvc\Service\DiAbstractServiceFactoryFactory
    • Zend\Mvc\Service\DiFactory
    • Zend\Mvc\Service\DiServiceInitializerFactory
    • Zend\Mvc\Service\DiStrictAbstractServiceFactory
    • Zend\Mvc\Service\DiStrictAbstractServiceFactoryFactory
  • #152 formally marks the ControllerLoaderFactory as deprecated via annotation (though it has been noted as such in the documentation for several years). Use Zend\Mvc\Service\ControllerManagerFactory instead.

Removed

  • Nothing.

Fixed

  • #149 and #158 fix an "undefined variable" issue with Zend\Mvc\Service\DiAbstractServiceFactoryFactory.
  • #153 removes the typehint from the $exception argument of DispatchListener::marshalBadControllerEvent(), fixing an issue when PHP 7 Error types are caught and passed to the method.
release-2.7.8

Added

  • #138 adds support for PHP 7 Throwables within each of:
    • DispatchListener
    • MiddlewareListener
    • The console RouteNotFoundStrategy and ExceptionStrategy
    • The HTTP DefaultRenderingStrategy and RouteNotFoundStrategy

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.
release-2.7.7

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #122 fixes the FormAnnotationBuilderFactory to use the container's get() method instead of build() to retrieve the event manager instance.
release-2.7.6

Added

  • #94 adds a documentation recipe for using middleware withing MVC event listeners.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #107 fixes an incorrect import statement in the DiStrictAbstractServiceFactoryFactory that prevented it from working.
  • #112 fixes how the Forward plugin detects and detaches event listeners to ensure it works against either v2 or v3 releases of zend-eventmanager.
release-2.7.5

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #111 fixes a bug in how the ConsoleExceptionStrategyFactory whereby it was overwriting the default exception message template with an empty string when no configuration for it was provided.
release-2.7.4

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #114 fixes an issue in the ServiceLocatorAware initializer whereby plugin manager instances were falsely identified as the container instance when under zend-servicemanager v2.
release-2.7.3

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #97 re-introduces the ServiceManager factory definition inside ServiceManagerConfig, to ensure backwards compatibility.
release-2.7.2

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #95 re-introduces the various zend-di aliases and factories in Zend\Mvc\Service\ServiceListenerFactory, which were accidently removed in the 2.7.0 release.
  • #96 fixes shared event detachment/attachment within the Forward plugin to work with both v2 and v3 of zend-eventmanager.
  • #93 ensures that the Console Catchall route factory will not fail when the defaults $options array key is missing.
  • #43 updates the AbstractRestfulController to ensure it can accept textual (e.g., XML, YAML) data.
  • #79 updates the continuous integration configuration to ensure we test against lowest and highest accepted dependencies, and those in the current lockfile.
release-2.7.1

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #88 addresses backwards compatibility concerns raised by users due to the new deprecation notices emitted by ServiceLocatorAware initializers; in particular, all AbstractController implementations were raising a deprecation wen first pulled from the ControllerManager.

    At this time, notices are now only raised in the following conditions:

    • When a non-controller, non-plugin manager, ServiceLocatorAware instance is detected.
    • When a plugin manager instance is detected that is ServiceLocatorAware and does not have a composed service locator. In this situation, the deprecation notice indicates that the factory for the plugin manager should be updated to inject the service locator via the constructor.
    • For controllers that do not extend AbstractController but do implement ServiceLocatorAware.
    • When calling getServiceLocator() from within an AbstractController extension; this properly calls out the practice that should be avoided and which requires updates to the controller.
release-2.7.0

Added

  • #31 adds three new optional arguments to the Zend\Mvc\Application constructor: an EventManager instance, a Request instance, and a Response instance.

  • #36 adds more than a dozen service factories, primarily to separate conditional factories into discrete factories.

  • #32 adds Zend\Mvc\MiddlewareListener, which allows dispatching PSR-7-based middleware implementing the signature function (ServerRequestInterface $request, ResponseInterface $response). To dispatch such middleware, point the middleware "default" for a given route to a service name or callable that will resolve to the middleware:

    [ 'router' => 'routes' => [
        'path' => [
            'type' => 'Literal',
            'options' => [
                'route' => '/path',
                'defaults' => [
                    'middleware' => 'ServiceNameForPathMiddleware',
                ],
            ],
        ],
    ]
    

    This new listener listens at the same priority as the DispatchListener, but, due to being registered earlier, will invoke first; if the route match does not resolve to middleware, it will fall through to the original DispatchListener, allowing normal ZF2-style controller dispatch.

  • #84 publishes the documentation to https://zendframework.github.io/zend-mvc/

Deprecated

  • Two initializers registered by Zend\Mvc\Service\ServiceManagerConfig are now deprecated, and will be removed starting in version 3.0:
    • ServiceManagerAwareInitializer, which injects classes implementing Zend\ServiceManager\ServiceManagerAwareInterface with the service manager instance. Users should create factories for such classes that directly inject their dependencies instead.
    • ServiceLocatorAwareInitializer, which injects classes implementing Zend\ServiceManager\ServiceLocatorAwareInterface with the service manager instance. Users should create factories for such classes that directly inject their dependencies instead.

Removed

  • Zend\Mvc\Controller\AbstractController no longer directly implements Zend\ServiceManager\ServiceLocatorAwareInterface, but still implements the methods defined in that interface. This was done to provide forwards-compatibility, as zend-servicemanager v3 no longer defines the interface. All initializers that do ServiceLocatorInterface injection were updated to also inject when just the methods are present.

Fixed

  • #31 and #76 update the component to be forwards-compatible with zend-eventmanager v3.
  • #36, #76, #80, #81, and #82 update the component to be forwards-compatible with zend-servicemanager v3. Several changes were introduced to support this effort:
    • Added a RouteInvokableFactory, which can act as either a FactoryInterface or AbstractFactoryInterface for loading invokable route classes, including by fully qualified class name. This is registered as an abstract factory by default with the RoutePluginManager.
    • The DispatchListener now receives the controller manager instance at instantiation.
    • The ViewManager implementations were updated, and most functionality within separated into discrete factories.
release-2.6.3

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #74 fixes the FormAnnotationBuilderFactory's usage of the FormElementManager::injectFactory() method to ensure it works correctly on all versions.
release-2.6.2

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #71 fixes the ViewHelperManagerFactory to be backwards-compatible with v2 by ensuring that the factories for each of the url, basepath, and doctype view helpers are registered using the fully qualified class names present in Zend\View\HelperPluginManager; these changes ensure requests for these helpers resolve to these override factories, instead of the InvokableFactory.
release-2.6.1

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #69 largely reverts #30, having the component utilize the HydratorPluginManager from zend-stdlib 2.7.5. This was done to provide backwards compatibility; while zend-stdlib Hydrator types can be used in place of zend-hydrator types, the reverse is not true.

    You can make your code forwards-compatible with version 3, where the HydratorPluginManager will be pulled from zend-hydrator, by updating your typehints to use the zend-hydrator classes instead of those from zend-stdlib; the instances returned from the zend-stdlib HydratorPluginManager, because they extend those from zend-hydrator, remain compatible.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport
twbs/bootstrap4
php-http/client-implementation
phpcr/phpcr-implementation
cucumber/gherkin-monorepo
haydenpierce/class-finder
psr/simple-cache-implementation
uri-template/tests