-
Notifications
You must be signed in to change notification settings - Fork 7
/
services.yaml
106 lines (106 loc) · 3.64 KB
/
services.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
services:
Oxrun\Core\OxrunContext:
class: Oxrun\Core\OxrunContext
autowire: true
Oxrun\Core\EnvironmentManager:
class: Oxrun\Core\EnvironmentManager
autowire: true
Oxrun\Helper\MulitSetConfigConverter:
class: Oxrun\Helper\MulitSetConfigConverter
autowire: true
Oxrun\Helper\FileStorage:
class: Oxrun\Helper\FileStorage
Oxrun\Command\Cache\ClearCommand:
tags:
- { name: console.command, command: 'cache:clear' }
Oxrun\Command\Config\ShopGetCommand:
tags:
- { name: console.command, command: 'config:shop:get' }
Oxrun\Command\Config\ShopSetCommand:
tags:
- { name: console.command, command: 'config:shop:set' }
Oxrun\Command\Database\AnonymizeCommand:
tags:
- { name: console.command, command: 'db:anonymize' }
Oxrun\Command\Database\DumpCommand:
tags:
- { name: console.command, command: 'db:dump' }
Oxrun\Command\Database\ImportCommand:
tags:
- { name: console.command, command: 'db:import' }
Oxrun\Command\Database\Info:
tags:
- { name: console.command, command: 'db:info' }
Oxrun\Command\Database\ListCommand:
tags:
- { name: console.command, command: 'db:list' }
Oxrun\Command\Database\QueryCommand:
tags:
- { name: console.command, command: 'db:query' }
Oxrun\Command\Misc\PhpstormMetadataCommand:
tags:
- { name: console.command, command: 'misc:phpstorm:metadata' }
Oxrun\Command\Misc\RegisterCommand:
tags:
- { name: console.command, command: 'misc:register:command' }
Oxrun\Command\Module\GenerateCommand:
tags:
- { name: console.command, command: 'module:generate' }
Oxrun\Command\Module\ListCommand:
tags:
- { name: console.command, command: 'module:list' }
Oxrun\Command\Module\ReloadCommand:
tags:
- { name: console.command, command: 'module:reload' }
autowire: true
Oxrun\Command\Oxid\ShopListCommand:
tags:
- { name: console.command, command: 'oxid:shops' }
Oxrun\Command\Route\DebugCommand:
tags:
- { name: console.command, command: 'route:debug' }
Oxrun\Command\User\CreateUserCommand:
tags:
- { name: console.command, command: 'user:create' }
Oxrun\Command\User\PasswordCommand:
tags:
- { name: console.command, command: 'user:password' }
Oxrun\Command\Views\UpdateCommand:
tags:
- { name: console.command, command: 'views:update' }
Oxrun\Command\Deploy\UpdateModuleConfigCommand:
tags:
- { name: console.command, command: 'deploy:update-module-config' }
autowire: true
Oxrun\Command\Deploy\ModuleApplyConfigurationLightCommand:
tags:
- { name: console.command, command: 'deploy:module-apply-configuration-light' }
autowire: true
Oxrun\Command\Deploy\ModuleActivatorCommand:
tags:
- { name: console.command, command: 'deploy:module-activator' }
autowire: true
Oxrun\Command\Config\GetCommand:
tags:
- { name: console.command, command: 'config:get' }
autowire: true
Oxrun\Command\Deploy\GenerateModuleActivatorCommand:
tags:
- { name: console.command, command: 'deploy:generate:module-activator' }
autowire: true
Oxrun\Command\Deploy\GenerateConfigurationCommand:
tags:
- { name: console.command, command: 'deploy:generate:configuration' }
autowire: true
Oxrun\Command\Deploy\ConfigCommand:
tags:
- { name: console.command, command: 'deploy:config' }
autowire: true
Oxrun\Command\Config\SetCommand:
tags:
- { name: console.command, command: 'config:set' }
autowire: true
Oxrun\Command\Deploy\LinkEnvironmentCommand:
tags:
- { name: console.command, command: 'deploy:link:environment' }
autowire: true