You are here

migrate.services.yml in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/migrate/migrate.services.yml
core/modules/migrate/migrate.services.yml

File

core/modules/migrate/migrate.services.yml
View source
  1. services:
  2. cache.migrate:
  3. class: Drupal\Core\Cache\CacheBackendInterface
  4. tags:
  5. - { name: cache.bin }
  6. factory: cache_factory:get
  7. arguments: [migrate]
  8. migrate.template_storage:
  9. class: Drupal\migrate\MigrateTemplateStorage
  10. arguments: ['@module_handler']
  11. migrate.migration_builder:
  12. class: Drupal\migrate\MigrationBuilder
  13. arguments: ['@plugin.manager.migrate.builder']
  14. plugin.manager.migrate.source:
  15. class: Drupal\migrate\Plugin\MigratePluginManager
  16. arguments: [source, '@container.namespaces', '@cache.discovery', '@module_handler', 'Drupal\migrate\Annotation\MigrateSource']
  17. plugin.manager.migrate.process:
  18. class: Drupal\migrate\Plugin\MigratePluginManager
  19. arguments: [process, '@container.namespaces', '@cache.discovery', '@module_handler', 'Drupal\migrate\Annotation\MigrateProcessPlugin']
  20. plugin.manager.migrate.destination:
  21. class: Drupal\migrate\Plugin\MigrateDestinationPluginManager
  22. arguments: [destination, '@container.namespaces', '@cache.discovery', '@module_handler', '@entity.manager']
  23. plugin.manager.migrate.id_map:
  24. class: Drupal\migrate\Plugin\MigratePluginManager
  25. arguments: [id_map, '@container.namespaces', '@cache.discovery', '@module_handler']
  26. plugin.manager.migrate.builder:
  27. class: Drupal\migrate\Plugin\MigratePluginManager
  28. arguments: [builder, '@container.namespaces', '@cache.discovery', '@module_handler']