Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit a66bbe4

Browse files
committed
Merge pull request #428 from samsonasik/patch-2
add use_zend_loader = false in config/application.config.php
2 parents 075d526 + 87fb819 commit a66bbe4

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

config/application.config.php

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,10 @@
1111

1212
// These are various options for the listeners attached to the ModuleManager
1313
'module_listener_options' => [
14-
// This should be an array of paths in which modules reside.
15-
// If a string key is provided, the listener will consider that a module
16-
// namespace, the value of that key the specific path to that module's
17-
// Module class.
18-
'module_paths' => [
19-
'./module',
20-
'./vendor',
21-
],
22-
14+
15+
// use composer autoloader instead of zend-loader
16+
'use_zend_loader' => false,
17+
2318
// An array of paths from which to glob configuration files after
2419
// modules are loaded. These effectively override configuration
2520
// provided by modules themselves. Paths may use GLOB_BRACE notation.

0 commit comments

Comments
 (0)