Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / generate.authentication.provider.yml
1 description: 'Generate an Authentication Provider'
2 help: 'The <info>generate:authentication:provider</info> command helps you generate a new Authentication Provider.'
3 welcome: 'Welcome to the Drupal Authentication Provider generator'
4 options:
5   module: 'The Module name.'
6   class: 'Authentication Provider class'
7   provider-id: 'Provider ID'
8 questions:
9   module: 'Enter the module name'
10   class: 'Enter the Authentication Provider class'
11   provider-id: 'Enter the Provider ID'
12 examples:
13   - description: 'Generate an authentication provider specifying the module, the class and the provider id'
14     execution: |
15       drupal generate:authentication:provider  \
16         --module="modulename"  \
17         --class="DefaultAuthenticationProvider"  \
18         --provider-id="default_authentication_provider"