Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / resources / modules / d8 / woot / drush.services.yml
1 services:
2   woot.manager:
3     class: Drupal\woot\WootManager
4     arguments: ['@current_user']
5     tags:
6       -  { name: drush.command }
7   woot.command:
8     class: Drupal\woot\Commands\WootCommands
9     tags:
10       -  { name: drush.command }
11   greet.command:
12     class: Drupal\woot\Commands\GreetCommand
13     tags:
14       -  { name: console.command }
15   annotated_greet.command:
16     class: Drupal\woot\Commands\AnnotatedGreetCommand
17     tags:
18       -  { name: console.command }
19   example.generator:
20       class: Drupal\woot\Generators\ExampleGenerator
21       arguments: ['@module_handler']
22       tags:
23         -  { name: drush.generator }
24   woot.command_info_alter:
25     class: Drupal\woot\WootCommandInfoAlterer
26     arguments: ['@logger.factory']
27     tags:
28       -  { name: drush.command_info_alterer }