-
-
Notifications
You must be signed in to change notification settings - Fork 400
/
config.yaml
822 lines (754 loc) · 28.5 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
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
application:
check-root-user: true
twig:
baseDirs:
- ./res/twig
plugin:
folders:
- /usr/share/n98-magerun/modules
- /usr/local/share/n98-magerun/modules
helpers:
twig: N98\Util\Console\Helper\TwigHelper
database: N98\Util\Console\Helper\DatabaseHelper
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\ListCommand
- 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\Cache\Image\ClearCommand
- N98\Magento\Command\Media\Cache\JsCss\ClearCommand
- 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: openmage-20.0.14
version: 20.0.14
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.14.zip
type: zip
shasum: 15172228925d2f03db00712e591f14b15210bea1
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.10
version: 20.0.10
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.10.zip
type: zip
shasum: 2702a588b6d8668707b1a785f9b634d1fdb4ec01
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.6
version: 20.0.6
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.6.zip
type: zip
shasum: d404d4d927abc79f2fd418999beb77aa99fee85c
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.5
version: 20.0.5
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.5.zip
type: zip
shasum: cc38fa0da68ab933b7b22ccd529b9184589dea08
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.4
version: 20.0.4
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.4.zip
type: zip
shasum: 1746da6779554048028e5f342a9a95ba6b48ec19
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.3
version: 20.0.3
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.3.zip
type: zip
shasum: f7e9241c8b246518d84942de78c031228cb4e3f1
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.2
version: 20.0.2
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.2.zip
type: zip
shasum: a3f2a8cc6eb055a9994cf593e0ab018bd6c42f5d
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.1
version: 20.0.1
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.1.zip
type: zip
shasum: 0284936a971df6815e96bbc0630b1c5bf160aa94
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-20.0.0
version: 20.0.0
dist:
url: https://github.com/OpenMage/magento-lts/archive/v20.0.0.zip
type: zip
shasum: b8bcc1101af9e25a695647cdc8693620a65768f5
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.10
version: 19.4.10
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.10.zip
type: zip
shasum: ae4c788ea6e941b5c60b62b9fd18ff44bd10da91
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.9
version: 19.4.9
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.9.zip
type: zip
shasum: 213f77f78b307dfbab54ace73c71a8fe08e4340a
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.8
version: 19.4.8
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.8.zip
type: zip
shasum: b9370267b37fc2b111683c447d47d5881e7762c3
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.7
version: 19.4.7
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.7.zip
type: zip
shasum: a4f752bc0d972e4ae8033b6e9e4370e80b5f6e2b
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.6
version: 19.4.6
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.6.zip
type: zip
shasum: d0c1d4b63fafe6c5a3fabe2dcbc9bf839805436d
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.5
version: 19.4.5
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.5.zip
type: zip
shasum: cadf8bbbaee97072f5d731c4af7737a43655f3e1
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.4
version: 19.4.4
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.4.zip
type: zip
shasum: d6024a0358c35dbc4a16dcc165704008022fc96c
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.3
version: 19.4.3
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.3.zip
type: zip
shasum: ea65e1674cf2a0aab87f28f078b8b6f647f5898a
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.2
version: 19.4.2
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.2.zip
type: zip
shasum: 7b2c5192702ba85d5d5144a77de1054f54930dd7
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.1
version: 19.4.1
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.1.zip
type: zip
shasum: f905741d7423b21cedc8a906f6f0e3bda3838650
extra:
sample-data: sample-data-1.9.2.4
- name: openmage-19.4.0
version: 19.4.0
dist:
url: https://github.com/OpenMage/magento-lts/archive/v19.4.0.zip
type: zip
shasum: cf2529703607f326b23d8e8fd9897a579a4721d5
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.5
version: 1.9.4.5
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.5.zip
type: zip
shasum: 5a80d32ff1486722d5eb5cc4926b3171b10449d7
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.4
version: 1.9.4.4
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.4.zip
type: zip
shasum: 9f2a91503546213d287819e644aee0d1c8ab89d0
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.3
version: 1.9.4.3
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.3.zip
type: zip
shasum: d063cf051972fa6dd1befff1929907b991cf3829
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.2
version: 1.9.4.2
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.2.zip
type: zip
shasum: b553b16d9469bdf33cf8a96803531e08154814cc
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.1
version: 1.9.4.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.1.zip
type: zip
shasum: c1045a378aadbb453f0e01a9b1e0234bb9aac749
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.4.0
version: 1.9.4.0
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.0.zip
type: zip
shasum: e79ea1a5e9fb175cd9a48af8e8b94e9485dfeffb
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.10
version: 1.9.3.10
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.10.zip
type: zip
shasum: c4eb4a0728154cfdae2781c15d9a1405136efa1e
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.9
version: 1.9.3.9
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.9.zip
type: zip
shasum: 55172f38d18f12c62fa8b331ba85bb65d6c476e5
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.8
version: 1.9.3.8
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.8.zip
type: zip
shasum: 1d23757eb2314a5979bbe8222840d27303c51a9c
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.7
version: 1.9.3.7
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.7.zip
type: zip
shasum: 018b9c8a21c05fcb67e78202cb2331ec2862b7a2
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.6
version: 1.9.3.6
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.6.zip
type: zip
shasum: 7ecc735c1d7d80f7b412caded7ab160013b00eb2
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.4
version: 1.9.3.4
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.4.zip
type: zip
shasum: 6dadf8de337ae7033839839caeb15cbb2e98e4b8
extra:
sample-data: sample-data-1.9.2.4
- name: magento-mirror-1.9.3.3
version: 1.9.3.3
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.3.zip
type: zip
shasum: f613968e1ea667ec1a0f0198b7c1d319e2598580
extra:
sample-data: sample-data-1.9.2.4
- 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: openmage-lts-1.9.4.x
version: dev-1.9.4.x
source:
url: https://github.com/OpenMage/magento-lts.git
type: git
reference: 1.9.4.x
extra:
sample-data: sample-data-1.9.2.4
- 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://github.com/sreichel/magento-1-compressed-sample-data/raw/master/magento-sample-data-1.9.2.4.zip
type: zip
shasum: 243a47cf216c83074f8b657f42d6707940646823
- name: sample-data-1.9.1.0
version: 1.9.1.0
dist:
url: https://github.com/sreichel/magento-1-compressed-sample-data/raw/master/magento-sample-data-1.9.1.0.zip
type: zip
shasum: 0d4145ae3fc732de24f2ae504c908991db3bc01c
- name: sample-data-1.9.0.0
version: 1.9.0.0
dist:
url: https://github.com/sreichel/magento-1-compressed-sample-data/raw/master/magento-sample-data-1.9.0.0.zip
type: zip
shasum: 24c7144d106fb1165e3e730fd040780e23dd9c60
- name: sample-data-1.6.1.0
version: 1.6.1.0
dist:
url: https://github.com/sreichel/magento-1-compressed-sample-data/raw/master/magento-sample-data-1.6.1.0.zip
type: zip
shasum: 81b7b82d4223fdcd823ab62f7fac9c38efad47b8
- name: sample-data-1.1.2
version: 1.1.2
dist:
url: https://github.com/sreichel/magento-1-compressed-sample-data/raw/master/magento-sample-data-1.1.2.zip
type: zip
shasum: c816cb97ec089eed73101324a9b154a88e00b262
installation:
pre-check:
php:
extensions:
- pdo_mysql
- spl
- dom
- simplexml
- 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: passwordpassword123
admin_frontname: admin
admin_email: john.doe@example.com
encryption_key:
N98\Magento\Command\Database\DumpCommand:
table-groups:
- id: admin
description: Admin tables
tables: "admin*"
- 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_problem newsletter_queue* newsletter_subscriber"
- 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: "@admin @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
- 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