Update Composer, update everything

This commit is contained in:
Oliver Davies 2018-11-23 12:29:20 +00:00
parent ea3e94409f
commit dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions

View file

@ -0,0 +1,18 @@
description: 'Generate a migrate process plugin'
help: 'Creates new process plugin for the migration.'
welcome: 'Welcome to the Drupal Migrate Process Plugin generator'
options:
module: 'The Module name.'
class: 'Plugin class name'
plugin-id: 'Plugin id'
questions:
module: 'Enter the module name'
class: 'Enter the migration process plugin class name'
plugin-id: 'Enter the migration process plugin id'
examples:
- description: 'Generate a migration plugin process specifying the module name, the class and its id'
execution: |
drupal generate:plugin:migrate:process \
--module="modulename" \
--class="MigrationProcess" \
--plugin-id="migrationprocess"