我如何可以覆盖下./vendor/.../module_name/config/module.config.php发现配置文件?
不,这个环节是不是为我工作。 我不知道为什么。
我如何可以覆盖下./vendor/.../module_name/config/module.config.php发现配置文件?
不,这个环节是不是为我工作。 我不知道为什么。
尝试命名配置文件filename.global.php或filename.local.php。
里面application.config.php它有这样一行:
config/autoload/{,*.}{global,local}.php
至于ZfcUser模块和改变的主要途径。
在zfcuser.global.php
修改该文件的底部如下:
return array(
'zfcuser' => $settings,
'service_manager' => array(
'aliases' => array(
'zfcuser_zend_db_adapter' => (isset($settings['zend_db_adapter'])) ? $settings['zend_db_adapter']: 'Zend\Db\Adapter\Adapter',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'options' => array(
'route' => '/member',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'index',
),
),
)
)
)
);