Use Console on Kalabox

Drupal Console isn't include as a feature in Kalabox yet. To use it, I installed this plugin: https://github.com/bmcclure/kalabox-plugin-drupal-console

 

However, when I installed, it threw an error:

PHP Fatal error: Uncaught Error: Call to undefined method Drupal\Console\Core\Utils\DrupalFinder::getVendorDir() in /src/code/vendor/drupal/console-core/src/Utils/DrupalFinder.php:24

 

To fix, you can add this code to vendor/drupal/console-core/src/Utils/DrupalFinder.php:

/**
 * @return string
 */
public function getVendorDir()
{
    return parent::getDrupalRoot() . 'vendor';
}

 

Thankfully the solution was posted yesterday, hopefully the maintainer has a change to update the plugin soon:
https://github.com/bmcclure/kalabox-plugin-drupal-console/issues/3

Tags