reinfi/zfe-module-bridge-provider

An Zend Expressive module for loading ZF2 or ZF3 modules.

1.0 2017-11-26 09:50 UTC

This package is auto-updated.

Last update: 2024-04-10 05:09:38 UTC


README

Build Status Coverage Status

Add ZF2 or ZF3 modules to your Zend Expressive application via this bridge.

Installation

  1. Install with Composer: composer require reinfi/zfe-module-bridge-provider.
  2. Use ModuleBridgeProvider in your config.php:
$aggregator = new ConfigAggregator([
    new \Reinfi\ModuleBridgeProvider\ModuleBridgeProvider(
        [
            YourModule::class,
            AnotherModule::class,
        ]
    ),
]);

return $aggregator->getMergedConfig();

What it does.

It loads every given module with the loadModule and loadModule.resolve events from the module manager.

What it not does.

It does not trigger any init or onBootstrap methods from the module definition.

FAQ

Feel free to ask any questions or open own pull requests.