forked from acquia-pso/dst-entity-generate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drush.services.yml
68 lines (68 loc) · 2.17 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
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
services:
dst_entity_generate.commands:
class: Drupal\dst_entity_generate\Commands\GenerateAll
tags:
- { name: drush.command }
dst_entity_generate.commands.menus:
class: Drupal\dst_entity_generate\Commands\Menu
tags:
- { name: drush.command }
arguments:
- '@entity_type.manager'
dst_entity_generate.commands.content_type:
class: Drupal\dst_entity_generate\Commands\ContentType
tags:
- { name: drush.command }
arguments:
- '@entity_type.manager'
- '@entity_display.repository'
- '@dst_entity_generate.general_api'
dst_entity_generate.commands.user_roles:
class: Drupal\dst_entity_generate\Commands\UserRole
arguments:
- '@entity_type.manager'
tags:
- { name: drush.command }
dst_entity_generate.commands.workflow:
class: Drupal\dst_entity_generate\Commands\Workflow
arguments:
- '@entity_type.manager'
tags:
- { name: drush.command }
dst_entity_generate.commands.image_style:
class: Drupal\dst_entity_generate\Commands\ImageStyle
arguments:
- '@entity_type.manager'
- '@plugin.manager.image.effect'
tags:
- { name: drush.command }
dst_entity_generate.commands.vocabulary:
class: Drupal\dst_entity_generate\Commands\Vocabulary
tags:
- { name: drush.command }
arguments:
- '@entity_type.manager'
- '@dst_entity_generate.general_api'
dst_entity_generate.commands.custom_block_type:
class: Drupal\dst_entity_generate\Commands\CustomBlockType
arguments:
- '@entity_type.manager'
- '@dst_entity_generate.general_api'
tags:
- { name: drush.command }
dst_entity_generate.commands.paragraph:
class: Drupal\dst_entity_generate\Commands\Paragraph
arguments:
- '@entity_type.manager'
- '@dst_entity_generate.general_api'
tags:
- { name: drush.command }
dst_entity_generate.commands.media:
class: Drupal\dst_entity_generate\Commands\Media
arguments:
- '@entity_type.manager'
- '@entity_display.repository'
- '@dst_entity_generate.optional_dependency_handler'
- '@dst_entity_generate.general_api'
tags:
- { name: drush.command }