-
Notifications
You must be signed in to change notification settings - Fork 1
/
drush.services.yml
32 lines (32 loc) · 1.05 KB
/
drush.services.yml
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
services:
helfi_api_base.migrate_hook_commands:
class: \Drupal\helfi_api_base\Commands\MigrateHookCommands
arguments:
- '@plugin.manager.migration'
- '@keyvalue'
- '@datetime.time'
tags:
- { name: drush.command }
helfi_api_base.deploy_commands:
class: \Drupal\helfi_api_base\Commands\DeployCommands
arguments: ['@event_dispatcher']
tags:
- { name: drush.command }
helfi_api_base.fixture_commands:
class: \Drupal\helfi_api_base\Commands\FixtureCommands
arguments: ['@service_container']
tags:
- { name: drush.command }
helfi_api_base.locale_commands:
class: \Drupal\helfi_api_base\Commands\LocaleCommands
arguments: ['@language_manager', '@file_system', '@string_translation', '@extension.list.module']
tags:
- { name: drush.command }
helfi_api_base.revision_commands:
class: \Drupal\helfi_api_base\Commands\RevisionCommands
arguments:
- '@helfi_api_base.revision_manager'
- '@entity_type.manager'
- '@database'
tags:
- { name: drush.command }