Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DGI9-477: Fix/drush 12 #18

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9 || ^10"
"drush.9-11.services.yml": "^9 || ^10 || ^11"
}
}
}
Expand Down
19 changes: 19 additions & 0 deletions drush.9-11.services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
services:
content_sync.commands:
class: \Drupal\content_sync\Drush\Commands\ContentSyncCommands
arguments:
- '@content.storage'
- '@content.storage.sync'
- '@content_sync.manager'
- '@entity_type.manager'
- '@content_sync.exporter'
- '@module_handler'
- '@event_dispatcher'
- '@lock'
- '@config.typed'
- '@module_installer'
- '@theme_handler'
- '@string_translation'
tags:
- { name: drush.command }
8 changes: 0 additions & 8 deletions drush.services.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Drupal\content_sync\Commands;
namespace Drupal\content_sync\Drush\Commands;

use Drupal\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
Loading