forked from netz98/n98-magerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
703 lines (628 loc) · 23.9 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
application:
check-root-user: true
twig:
baseDirs:
plugin:
folders:
- /usr/local/share/n98-magerun/modules
helpers:
database: N98\Util\Console\Helper\DatabaseHelper
dialog: Composer\Command\Helper\DialogHelper
parameter: N98\Util\Console\Helper\ParameterHelper
table: N98\Util\Console\Helper\TableHelper
io: N98\Util\Console\Helper\IoHelper
script:
folders:
- /usr/local/share/n98-magerun/scripts
init:
code: admin
type: store
options: []
detect:
subFolders:
- web
- www
- htdocs
- public
- pub
- webroot
- web-root
- wwwroot
event:
subscriber:
- N98\Magento\Application\Console\EventSubscriber\CheckRootUser
- N98\Magento\Command\ComposerWrapper\EventSubscriber
- N98\Util\Console\Helper\IoHelper
commands:
customCommands:
- N98\Magento\Command\Admin\DisableNotificationsCommand
- N98\Magento\Command\Admin\User\ChangePasswordCommand
- N98\Magento\Command\Admin\User\CreateUserCommand
- N98\Magento\Command\Admin\User\ListCommand
- N98\Magento\Command\Admin\User\DeleteUserCommand
- N98\Magento\Command\Admin\User\ChangeStatusCommand
- N98\Magento\Command\Admin\User\LockCommand
- N98\Magento\Command\Admin\User\LockdownCommand
- N98\Magento\Command\Admin\User\UnlockCommand
- N98\Magento\Command\Cache\CleanCommand
- N98\Magento\Command\Cache\Dir\FlushCommand
- N98\Magento\Command\Cache\DisableCommand
- N98\Magento\Command\Cache\EnableCommand
- N98\Magento\Command\Cache\FlushCommand
- N98\Magento\Command\Cache\ListCommand
- N98\Magento\Command\Cache\ReportCommand
- N98\Magento\Command\Cache\ViewCommand
- N98\Magento\Command\Category\Create\DummyCommand
- N98\Magento\Command\Cms\Banner\ToggleCommand
- N98\Magento\Command\Cms\Block\ToggleCommand
- N98\Magento\Command\Cms\Page\PublishCommand
- N98\Magento\Command\Config\DeleteCommand
- N98\Magento\Command\Config\DumpCommand
- N98\Magento\Command\Config\GetCommand
- N98\Magento\Command\Config\SetCommand
- N98\Magento\Command\Config\SearchCommand
- N98\Magento\Command\Customer\ChangePasswordCommand
- N98\Magento\Command\Customer\CreateCommand
- N98\Magento\Command\Customer\CreateDummyCommand
- N98\Magento\Command\Customer\InfoCommand
- N98\Magento\Command\Customer\ListCommand
- N98\Magento\Command\Customer\DeleteCommand
- N98\Magento\Command\Database\ConsoleCommand
- N98\Magento\Command\Database\CreateCommand
- N98\Magento\Command\Database\DropCommand
- N98\Magento\Command\Database\DumpCommand
- N98\Magento\Command\Database\ImportCommand
- N98\Magento\Command\Database\InfoCommand
- N98\Magento\Command\Database\QueryCommand
- N98\Magento\Command\Database\VariablesCommand
- N98\Magento\Command\Database\StatusCommand
- N98\Magento\Command\Database\Maintain\CheckTablesCommand
- N98\Magento\Command\Design\DemoNoticeCommand
- N98\Magento\Command\Developer\Code\Model\MethodCommand
- N98\Magento\Command\Developer\EmailTemplate\UsageCommand
- N98\Magento\Command\Developer\Ide\PhpStorm\MetaCommand
- N98\Magento\Command\Developer\Setup\Script\AttributeCommand
- N98\Magento\Command\Developer\ConsoleCommand
- N98\Magento\Command\Developer\Log\DbCommand
- N98\Magento\Command\Developer\Log\LogCommand
- N98\Magento\Command\Developer\Log\SizeCommand
- N98\Magento\Command\Developer\Module\CreateCommand
- N98\Magento\Command\Developer\Module\Disableenable\DisableCommand
- N98\Magento\Command\Developer\Module\Disableenable\EnableCommand
- N98\Magento\Command\Developer\Module\UpdateCommand
- N98\Magento\Command\Developer\Module\ListCommand
- N98\Magento\Command\Developer\Module\Observer\ListCommand
- N98\Magento\Command\Developer\Module\Rewrite\ConflictsCommand
- N98\Magento\Command\Developer\Module\Rewrite\ListCommand
- N98\Magento\Command\Developer\Module\Dependencies\OnCommand
- N98\Magento\Command\Developer\Module\Dependencies\FromCommand
- N98\Magento\Command\Developer\ProfilerCommand
- N98\Magento\Command\Developer\Report\CountCommand
- N98\Magento\Command\Developer\ClassLookupCommand
- N98\Magento\Command\Developer\SymlinksCommand
- N98\Magento\Command\Developer\MergeCssCommand
- N98\Magento\Command\Developer\MergeJsCommand
- N98\Magento\Command\Developer\TemplateHintsBlocksCommand
- N98\Magento\Command\Developer\TemplateHintsCommand
- N98\Magento\Command\Developer\Theme\DuplicatesCommand
- N98\Magento\Command\Developer\Theme\ListCommand
- N98\Magento\Command\Developer\Theme\InfoCommand
- N98\Magento\Command\Developer\Translate\InlineAdminCommand
- N98\Magento\Command\Developer\Translate\InlineShopCommand
- N98\Magento\Command\Developer\Translate\SetCommand
- N98\Magento\Command\Developer\Translate\ExportCommand
- N98\Magento\Command\Eav\Attribute\Create\DummyCommand
- N98\Magento\Command\Eav\Attribute\ListCommand
- N98\Magento\Command\Eav\Attribute\RemoveCommand
- N98\Magento\Command\Eav\Attribute\ViewCommand
- N98\Magento\Command\GiftCard\CreateCommand
- N98\Magento\Command\GiftCard\InfoCommand
- N98\Magento\Command\GiftCard\RemoveCommand
- N98\Magento\Command\GiftCard\Pool\GenerateCommand
- N98\Magento\Command\Indexer\ListCommand
- N98\Magento\Command\Indexer\ListMviewCommand
- N98\Magento\Command\Indexer\ReindexAllCommand
- N98\Magento\Command\Indexer\ReindexMviewCommand
- N98\Magento\Command\Indexer\ReindexCommand
- N98\Magento\Command\Installer\InstallCommand
- N98\Magento\Command\Installer\UninstallCommand
- N98\Magento\Command\LocalConfig\GenerateCommand
- N98\Magento\Command\MagentoConnect\DownloadExtensionCommand
- N98\Magento\Command\MagentoConnect\InstallExtensionCommand
- N98\Magento\Command\MagentoConnect\ListExtensionsCommand
- N98\Magento\Command\MagentoConnect\UpgradeExtensionCommand
- N98\Magento\Command\MagentoConnect\ValidateExtensionCommand
- N98\Magento\Command\Media\DumpCommand
- N98\Magento\Command\OpenBrowserCommand
- N98\Magento\Command\ScriptCommand
- N98\Magento\Command\Script\Repository\ListCommand
- N98\Magento\Command\Script\Repository\RunCommand
- N98\Magento\Command\SelfUpdateCommand
- N98\Magento\Command\ShellCommand
- N98\Magento\Command\System\CheckCommand
- N98\Magento\Command\System\Cron\HistoryCommand
- N98\Magento\Command\System\Cron\ListCommand
- N98\Magento\Command\System\Cron\RunCommand
- N98\Magento\Command\System\InfoCommand
- N98\Magento\Command\System\MaintenanceCommand
- N98\Magento\Command\System\Setup\CompareVersionsCommand
- N98\Magento\Command\System\Setup\ChangeVersionCommand
- N98\Magento\Command\System\Setup\RemoveCommand
- N98\Magento\Command\System\Setup\RunCommand
- N98\Magento\Command\System\Setup\IncrementalCommand
- N98\Magento\Command\System\Store\Config\BaseUrlListCommand
- N98\Magento\Command\System\Store\ListCommand
- N98\Magento\Command\System\Url\ListCommand
- N98\Magento\Command\System\Website\ListCommand
- "composer:init": Composer\Command\InitCommand
- "composer:install": Composer\Command\InstallCommand
- "composer:require": Composer\Command\RequireCommand
- "composer:update": Composer\Command\UpdateCommand
- "composer:validate": Composer\Command\ValidateCommand
- "composer:search": Composer\Command\SearchCommand
- "composer:diagnose": Composer\Command\DiagnoseCommand
disabled:
- dummy
aliases: []
N98\Magento\Command\Installer\InstallCommand:
magento-packages:
- name: magento-ce-1.9.3.2
version: 1.9.3.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.2.zip
type: zip
shasum: 8dccfa5a8ab6131f0e536e8c7269e5fb8559e03d
extra:
sample-data: sample-data-1.9.2.4
- name: magento-ce-1.9.3.1
version: 1.9.3.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.1.zip
type: zip
shasum: e46ebd867142427b1f1587df2fd8198f73dc6595
extra:
sample-data: sample-data-1.9.2.4
- name: magento-ce-1.9.3.0
version: 1.9.3.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.0.zip
type: zip
shasum: a1f18d56c03f74207a712b12b2d93d7c524d1f1d
extra:
sample-data: sample-data-1.9.2.4
- name: magento-ce-1.9.2.4
version: 1.9.2.4
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.4.zip
type: zip
shasum: 4a32fb868cf8194c958e01bcd85779b7855fe36c
extra:
sample-data: sample-data-1.9.2.4
- name: magento-ce-1.9.2.3
version: 1.9.2.3
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.3.zip
type: zip
shasum: 8a93762d4897203dd77e3a527887199f66620678
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.2.2
version: 1.9.2.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.2.zip
type: zip
shasum: 4abf582992311935cf1edcd888bf9024bc752cdf
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.2.1
version: 1.9.2.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.1.zip
type: zip
shasum: ce0c435a7320c4cac47290337b64861c2674e3f8
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.2.0
version: 1.9.2.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.0.zip
type: zip
shasum: 019538c04b6359ad61e4c6d2f54c835bd76f7141
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.1.1
version: 1.9.1.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.zip
type: zip
shasum: 3aa497d245affb273cc55851163f5133cecef650
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.1.0
version: 1.9.1.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.1.0.zip
type: zip
shasum: e3dcfea601ada21ce84ee4836d801dd2feeb08d1
extra:
sample-data: sample-data-1.9.1.0
- name: magento-ce-1.9.0.1
version: 1.9.0.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.0.1.zip
type: zip
shasum: 9c87abc997957ebbf646e1a4d87d3d09e4d773f5
extra:
sample-data: sample-data-1.9.0.0
- name: magento-ce-1.9.0.0
version: 1.9.0.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.0.0.zip
type: zip
shasum: 98dc5a70d0d12fa595032a7e4257e9a8ee8e293c
extra:
sample-data: sample-data-1.9.0.0
- name: magento-ce-1.8.1.0
version: 1.8.1.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.8.1.0.zip
type: zip
shasum: 3fbff399799177e8048cc4048f66213fedd132c1
extra:
sample-data: sample-data-1.6.1.0
- name: magento-ce-1.8.0.0
version: 1.8.0.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.8.0.0.zip
type: zip
shasum: 9b1dee54d0b047b66d7ad6b8ea1ff414b7773093
extra:
sample-data: sample-data-1.6.1.0
- name: magento-ce-1.7.0.2
version: 1.7.0.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.7.0.2.zip
type: zip
shasum: e7f761d1ca60d16db867e24b5219de8815d0ea25
extra:
sample-data: sample-data-1.6.1.0
- name: magento-ce-1.6.2.0
version: 1.6.2.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.6.2.0.zip
type: zip
shasum: db0de6d0d82427d997a206554bcd7e5874099671
extra:
sample-data: sample-data-1.6.1.0
- name: magento-ce-1.5.1.0
version: 1.5.1.0
source:
url: git://github.com/OpenMage/magento-mirror.git
type: git
reference: magento-1.5
extra:
sample-data: sample-data-1.1.2
- name: magento-ce-1.4.2.0
version: 1.4.2.0
source:
url: git://github.com/OpenMage/magento-mirror.git
type: git
reference: magento-1.4
extra:
sample-data: sample-data-1.1.2
- name: mageplus-master
version: dev-master
source:
url: https://github.com/mageplus/mageplus.git
type: git
reference: master
extra:
sample-data: sample-data-1.6.1.0
- name: magento-mirror-1.9.3.2
version: 1.9.3.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.2.zip
type: zip
shasum: 8dccfa5a8ab6131f0e536e8c7269e5fb8559e03d
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.1
version: 1.9.3.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.1.zip
type: zip
shasum: e46ebd867142427b1f1587df2fd8198f73dc6595
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.0
version: 1.9.3.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.0.zip
type: zip
shasum: a1f18d56c03f74207a712b12b2d93d7c524d1f1d
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.2.4
version: 1.9.2.4
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.4.zip
type: zip
shasum: 4a32fb868cf8194c958e01bcd85779b7855fe36c
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.2.3
version: 1.9.2.3
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.3.zip
type: zip
shasum: 8a93762d4897203dd77e3a527887199f66620678
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.2.2
version: 1.9.2.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.2.zip
type: zip
shasum: 4abf582992311935cf1edcd888bf9024bc752cdf
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.2.1
version: 1.9.2.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.1.zip
type: zip
shasum: ce0c435a7320c4cac47290337b64861c2674e3f8
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.2.0
version: 1.9.2.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.2.0.zip
type: zip
shasum: 019538c04b6359ad61e4c6d2f54c835bd76f7141
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.1.1
version: 1.9.1.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.zip
type: zip
shasum: 3aa497d245affb273cc55851163f5133cecef650
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.1.0
version: 1.9.1.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.1.0.zip
type: zip
shasum: e3dcfea601ada21ce84ee4836d801dd2feeb08d1
extra:
sample-data: sample-data-1.9.1.0
- name: magento-mirror-1.9.0.1
version: 1.9.0.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.0.1.zip
type: zip
shasum: 9c87abc997957ebbf646e1a4d87d3d09e4d773f5
extra:
sample-data: sample-data-1.9.0.0
- name: magento-mirror-1.9.0.0
version: 1.9.0.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.0.0.zip
type: zip
shasum: 98dc5a70d0d12fa595032a7e4257e9a8ee8e293c
extra:
sample-data: sample-data-1.9.0.0
- name: magento-mirror-1.8.1.0
version: 1.8.1.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.8.1.0.zip
type: zip
shasum: 3fbff399799177e8048cc4048f66213fedd132c1
extra:
sample-data: sample-data-1.6.1.0
- name: magento-mirror-1.8.0.0
version: 1.8.0.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.8.0.0.zip
type: zip
shasum: 9b1dee54d0b047b66d7ad6b8ea1ff414b7773093
extra:
sample-data: sample-data-1.6.1.0
- name: magento-mirror-1.7.0.2
version: 1.7.0.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.7.0.2.zip
type: zip
shasum: e7f761d1ca60d16db867e24b5219de8815d0ea25
extra:
sample-data: sample-data-1.6.1.0
- name: magento-mirror-1.6.2.0
version: 1.6.2.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.6.2.0.zip
type: zip
shasum: db0de6d0d82427d997a206554bcd7e5874099671
extra:
sample-data: sample-data-1.6.1.0
- name: magento-mirror-1.5.1.0
version: 1.5.1.0
source:
url: git://github.com/OpenMage/magento-mirror.git
type: git
reference: magento-1.5
extra:
sample-data: sample-data-1.1.2
- name: magento-mirror-1.4.2.0
version: 1.4.2.0
source:
url: git://github.com/OpenMage/magento-mirror.git
type: git
reference: magento-1.4
extra:
sample-data: sample-data-1.1.2
- name: mageplus-master
version: dev-master
source:
url: https://github.com/mageplus/mageplus.git
type: git
reference: master
extra:
sample-data: sample-data-1.6.1.0
demo-data-packages:
- name: sample-data-1.9.2.4
version: 1.9.2.4
dist:
url: https://sourceforge.net/projects/mageloads/files/assets/1.9.2.4/magento-sample-data-1.9.2.4-fix.tar.gz
type: tar
shasum: fe5930d0f41c2b5e92b86f7f7fc4247c927efa01
- name: sample-data-1.9.1.0
version: 1.9.1.0
dist:
url: https://sourceforge.net/projects/mageloads/files/assets/1.9.1.0/magento-sample-data-1.9.1.0.tar.gz
type: tar
shasum: 617e0271900772ac8f11e7bb86e29fca0f640562
- name: sample-data-1.9.0.0
version: 1.9.0.0
dist:
url: https://sourceforge.net/projects/mageloads/files/assets/1.9.0.0/magento-sample-data-1.9.0.0.tar.gz
type: tar
shasum: b2b535901eb2db92a8602baf8a839ab2120c4c8f
- name: sample-data-1.6.1.0
version: 1.6.1.0
dist:
url: https://sourceforge.net/projects/mageloads/files/assets/1.6.1.0/magento-sample-data-1.6.1.0.tar.gz
type: tar
shasum: a9226bc92966855327f6eb62ff8f6c562b2113a2
- name: sample-data-1.1.2
version: 1.1.2
dist:
url: https://sourceforge.net/projects/mageloads/files/assets/1.1.2/magento-sample-data-1.1.2.zip
type: zip
shasum: 6bbb57e387c59da2752fe013aadef6dcd3cd2b29
installation:
pre-check:
php:
extensions:
- pdo_mysql
- spl
- dom
- simplexml
- mcrypt
- hash
- curl
- iconv
- ctype
- gd
defaults:
currency: EUR
locale: de_DE
timezone: Europe/Berlin
use_secure: no
use_rewrites: yes
session_save: files
admin_username: admin
admin_firstname: John
admin_lastname: Doe
admin_password: password123
admin_frontname: admin
admin_email: [email protected]
encryption_key:
N98\Magento\Command\Database\DumpCommand:
table-groups:
- id: log
description: Log tables
tables: log_url log_url_info log_visitor log_visitor_info log_visitor_online report_event report_compared_product_index report_viewed_*
- id: dataflowtemp
description: Temporary tables of the dataflow import/export tool
tables: dataflow_batch dataflow_batch_export dataflow_batch_import dataflow_import_data dataflow_session
- id: importexporttemp
description: Temporary tables of the Import/Export module
tables: importexport_importdata
- id: sessions
description: Database session tables
tables: core_session
- id: stripped
description: Standard definition for a stripped dump (logs, sessions and dataflow)
tables: @log @dataflowtemp @importexporttemp @sessions
- id: sales
description: Sales data (orders, invoices, creditmemos etc)
tables: sales_order_aggregated* sales_order_tax* sales_flat* sales_recurring_* sales_refunded_* sales_payment_* enterprise_sales_* enterprise_customer_sales_* sales_bestsellers_* salesrule_coupon_usage salesrule_customer
- id: customers
description: Customer data - Should not be used without @sales
tables: customer_address* customer_entity* wishlist*
- id: emails
description: Email queue tables
tables: core_email_queue*
- id: newsletter
description: Newsletter subscriber data
tables: newsletter_*
- id: trade
description: Current trade data (customers and orders). You usally do not want those in developer systems.
tables: @customers @sales
- id: development
description: Removes logs and trade data so developers do not have to work with real customer data
tables: @trade @stripped @search @newsletter @emails
- id: ee_changelog
description: Changelog tables of new indexer since EE 1.13
tables: "*_cl"
- id: search
description: Search related tables
tables: "catalogsearch_*"
- id: idx
description: Tables with _idx suffix and index event tables
tables: "*_idx index_event index_process_event"
N98\Magento\Command\Customer\ListCommand:
limit: 1000
N98\Magento\Command\System\CheckCommand:
checks:
settings:
- N98\Magento\Command\System\Check\Settings\SecureBaseUrlCheck
- N98\Magento\Command\System\Check\Settings\UnsecureBaseUrlCheck
- N98\Magento\Command\System\Check\Settings\SecureCookieDomainCheck
- N98\Magento\Command\System\Check\Settings\UnsecureCookieDomainCheck
filesystem:
- N98\Magento\Command\System\Check\Filesystem\FoldersCheck
- N98\Magento\Command\System\Check\Filesystem\FilesCheck
php:
- N98\Magento\Command\System\Check\PHP\ExtensionsCheck
- N98\Magento\Command\System\Check\PHP\BytecodeCacheExtensionsCheck
security:
- N98\Magento\Command\System\Check\Security\LocalConfigAccessableCheck
mysql:
- N98\Magento\Command\System\Check\MySQL\VersionCheck
- N98\Magento\Command\System\Check\MySQL\EnginesCheck
filesystem:
folders:
media: "Used for images and other media files."
var: "Used for caching, reports, etc."
var/cache: "Used for caching"
var/session: "Used as file based session save"
files:
app/etc/local.xml: "Magento local configuration."
index.php.sample: "Used to generate staging websites in Magento enterprise edition"
php:
required-extensions:
- simplexml
- mcrypt
- hash
- gd
- dom
- iconv
- curl
- soap
- pdo
- pdo_mysql
bytecode-cache-extensions:
- apc
- eaccelerator
- xcache
- Zend Optimizer
- Zend OPcache
N98\Magento\Command\Media\DumpCommand:
strip:
folders:
- catalog/product/cache
- css
- js