-
Notifications
You must be signed in to change notification settings - Fork 111
Config for version 3.0 needs some fixing or explaining #389
Comments
I'm using the ConfigAggregator in an expressive application, works out of the box. $configManager = new ConfigAggregator([
...,
\ZfcRbac\ModuleConfig::class,
new PhpFileProvider($globPattern),
], \sprintf('data/cache/config-%s.php', APP_ENV));
return $configManager->getMergedConfig(); // config/autoload/zfc-rbac.global.php return [
'dependencies' => [
'factories' => [
\ZfcRbac\Role\RoleProviderInterface::class => \ZfcRbac\Container\InMemoryRoleProviderFactory::class,
],
],
'zfc_rbac' => [
'role_provider' => [
InMemoryRoleProvider::class => [
],
],
'assertion_map' => [
],
],
]; For zf3 you should only have to change |
I am just thinking what people will do with something other than Zend\ServiceManager how hard would be with Symfony or Laravel? and |
About decoupling from zf service manager: problem might be that we use the plugin manager for assertion plugins. Then again a plugin manager is just a nested container in theory. I don't know how symfony or laravel does this and how it would impact "modules" such as this one... If you think we can support them easily I see no reason why not to do it.
yes, i agree we should do that |
It's already done we only use ZF service manager internally for assertions, but config files are structured for ZF service manager but that's the only thing what stops from using something else. We can change the configuration to whatever we need. All factories use PSR-11 and could be used with any PSR-11 implementation as I understand. |
As far as I know there are no plugin managers (like in ZF) available in symfony or laravel. |
@prolic we don't need a plugin manager any PSR-11 implementation is good to go as we only use |
I would like to test the 3.0.0-alpha.1 release with my expressive application. Beside the config aggregator, which additional steps I need to call the ZfcRbac Authorization from pipeline or route? Thanks in advance. |
@imonteiro that's for you to decide. you only need to have an identity. Basically, this lib has only one method |
@svycka I get it. Thanks 👍 |
for zf3 project I ended up with this:
Not that bad but still maybe someone can suggest something better? Maybe we should support ZF and expressive by default since we have everything ready for them? And also not existing documentation.
Also noticed that we use
$container->get('config')
I think this is ZF thing or do other frameworks have it? for example here: https://github.com/ZF-Commons/zfc-rbac/blob/develop/src/Container/ModuleOptionsFactory.php#L37The text was updated successfully, but these errors were encountered: