我是zf2的新手。我注意到的一件事是供应商目录的大小。
我可以将供应商目录移动到另一个位置,即/ usr / zf2 / vender。在这种情况下,所有用户都可以使用供应商目录,而无需保留18M大小的本地副本。
谢谢,
TTK
答案 0 :(得分:1)
您可以编辑./config/application.config.php feil并更改/添加您选择的模块路径...
// These are various options for the listeners attached to the ModuleManager
'module_listener_options' => array(
// This should be an array of paths in which modules reside.
// If a string key is provided, the listener will consider that a module
// namespace, the value of that key the specific path to that module's
// Module class.
'module_paths' => array(
'./module',
'./vendor',
),
),
我不确定作曲家会如何对此做出反应,因为它遵循自己的方案,可能会有一些副作用。