Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
application.config.php
Go to the documentation of this file.
1 <?php
8 use Zend\Mvc\Service\DiAbstractServiceFactoryFactory;
9 use Zend\ServiceManager\Di\DiAbstractServiceFactory;
10 
11 return [
12  'modules' => [
13  'Magento\Setup',
14  ],
15  'module_listener_options' => [
16  'module_paths' => [
17  __DIR__ . '/../src',
18  ],
19  'config_glob_paths' => [
20  __DIR__ . '/autoload/{,*.}{global,local}.php',
21  ],
22  ],
23  'listeners' => [
24  InitParamListener::class
25  ],
26  'service_manager' => [
27  'factories' => [
28  DiAbstractServiceFactory::class => DiAbstractServiceFactoryFactory::class,
29  InitParamListener::BOOTSTRAP_PARAM => InitParamListener::class,
30  ],
31  ],
32  // list of Magento specific required services, like default abstract factory
33  'required_services' => [
34  DiAbstractServiceFactory::class
35  ]
36 ];
defined('TESTS_BP')||define('TESTS_BP' __DIR__
Definition: _bootstrap.php:60