-
Notifications
You must be signed in to change notification settings - Fork 10
Added zendframework/zend-config-aggregator-modulemanager as suggestion #18
Added zendframework/zend-config-aggregator-modulemanager as suggestion #18
Conversation
This is definitely an awesome idea! However, I hesitate to add it to this library, which is fairly agnostic about sources. I would suggest instead that this functionality be split into a separate package that users can opt-in to if they want to use zend-mvc modules. If you create the repo, we can fork it or have you assign ownership to the zendframework organization. |
Since we want to use the module in e.g. `zendframework/zend-expressive`, we might not want to use controllers either.
…endframework/zend-config-aggregator-modulemanager` extension
I've updated the PR and created a public repository boesing/zend-config-aggregator-modulemanager which could be forked/moved to the The project should be integrated into the documentation process, since there are links within the Markdown files which are pointing to the official documentation repository. |
Forward port #18 Conflicts: CHANGELOG.md
Thanks, @boesing! |
@weierophinney Please note that the suggested package is not yet available through packagist, since it should be moved/forked into the zendframework organization and then added to packagist. Same is for #19 |
I'd added it before merging. ;-) |
To use modules which were originally created for
zend-mvc
, I would like to use aZendModuleProvider
, which parses thezend-mvc
structure.Zend Modules provide configurations by the
getConfig
method.They might provide dependencies with the
service_manager
key or by implementing theServiceProviderInterface
fromzendframework/zend-modulemanager
.I created a class which just executes the methods and parse them into the new dependency structure.