zf2 将供应商移动到全局目录?

zf2 move vender to a global directory?

我是 zf2 的新手。我注意到的一件事是供应商目录的大小。

我可以将供应商目录移动到另一个位置,即 /usr/zf2/vender。这样一来,所有用户都可以使用vender目录,而无需在本地保留18M大小的副本。

谢谢,

ttk

您可以编辑 ./config/application.config.php feil 和 change/add 您选择的模块路径...

// 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',
    ),
),

我不确定 composer 将如何对此做出反应,因为它遵循自己的方案并且可能会产生一些副作用。