Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
App
Test
Unit
_files
other
local_developer_merged.php
Go to the documentation of this file.
1
<?php
7
return
[
8
'db'
=> [
9
'connection'
=> [
10
'connection_one'
=> [
'name'
=>
'connection_one'
,
'dbname'
=>
'overridden_db_one'
],
11
'connection_two'
=> [
'name'
=>
'connection_two'
,
'dbname'
=>
'db_two'
],
12
'connection_new'
=> [
'name'
=>
'connection_new'
,
'dbname'
=>
'db_new'
],
13
],
14
],
15
'resource'
=> [
16
'resource_one'
=> [
'name'
=>
'resource_one'
,
'connection'
=>
'connection_new'
],
17
'resource_two'
=> [
'name'
=>
'resource_two'
,
'connection'
=>
'connection_two'
],
18
'resource_new'
=> [
'name'
=>
'resource_new'
,
'connection'
=>
'connection_two'
],
19
],
20
'cache'
=> [
21
'frontend'
=> [
22
'cache_frontend_one'
=> [
'name'
=>
'cache_frontend_one'
,
'backend'
=>
'memcached'
],
23
'cache_frontend_two'
=> [
'name'
=>
'cache_frontend_two'
,
'backend'
=>
'file'
],
24
'cache_frontend_new'
=> [
'name'
=>
'cache_frontend_new'
,
'backend'
=>
'apc'
],
25
],
26
'type'
=> [
27
'cache_type_one'
=> [
'name'
=>
'cache_type_one'
,
'frontend'
=>
'cache_frontend_new'
],
28
'cache_type_two'
=> [
'name'
=>
'cache_type_two'
,
'frontend'
=>
'cache_frontend_two'
],
29
'cache_type_new'
=> [
'name'
=>
'cache_type_new'
,
'frontend'
=>
'cache_frontend_two'
],
30
],
31
],
32
'arbitrary_one'
=>
'Overridden Value One'
,
33
'arbitrary_two'
=>
'Value Two'
,
34
'huge_nested_level'
=> [
35
'level_one'
=> [
36
'level_two'
=> [
'level_three'
=> [
'level_four'
=> [
'level_five'
=>
'Level Five Data'
]]],
37
],
38
],
39
'arbitrary_new'
=>
'Value New'
40
];