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

Call Drupal Console commands natively from Drush #1337

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"d11wtq/boris": "~1.0",
"symfony/yaml": "~2.2",
"symfony/var-dumper": "2.6.3",
"pear/console_table": "~1.2.0"
"pear/console_table": "~1.2.0",
"drupal/console": "~0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May I ask why is this required? I think it should be optional or recommended.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If Drupal Console is required, then it gives us a mechanism to use its code to start migrating Drush commands to the Symfony console. At the moment, though, this PR is just a proof-of-concept. At first, there won't be any Drush commands that require Drupal Console, so we could certainly start off with this as a recommended package.

},
"require-dev": {
"phpunit/phpunit": ">=3.5",
Expand Down
Loading