Skip to content

Commit

Permalink
Avoid bringing in debug dependencies e.g. phpunit.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Mar 30, 2018
1 parent 3f2c96e commit 54aa39c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
"type": "drupal-drush",
"keywords": ["drush","behat","testing"],
"homepage": "https://github.com/drush-ops/behat-drush-endpoint",
"license": "GPLv2",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0",
"drupal/drupal-driver": "*"
"composer/installers": "~1.0"
}
}

1 comment on commit 54aa39c

@jhedstrom
Copy link
Member

Choose a reason for hiding this comment

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

I think this may have broken some things. I'm seeing failures now in testing the behat-drush-endpoint:

        PHP Fatal error:  Class '\Drupal\Driver\Fields\Drupal7\DefaultHandler' not found in drush/behat-drush-endpoint/behat-drush-common.inc on line 41
        PHP Stack trace:
        PHP   1. {main}() /home/travis/.composer/vendor/drush/drush/drush.php:0
        PHP   2. drush_main() /home/travis/.composer/vendor/drush/drush/drush.php:12
        PHP   3. Drush\Boot\BaseBoot->bootstrap_and_dispatch() /home/travis/.composer/vendor/drush/drush/includes/preflight.inc:66
        PHP   4. drush_dispatch() /home/travis/.composer/vendor/drush/drush/lib/Drush/Boot/BaseBoot.php:67
        PHP   5. call_user_func_array:{/home/travis/.composer/vendor/drush/drush/includes/command.inc:199}() /home/travis/.composer/vendor/drush/drush/includes/command.inc:199
        PHP   6. drush_command() /home/travis/.composer/vendor/drush/drush/includes/command.inc:199
        PHP   7. _drush_invoke_hooks() /home/travis/.composer/vendor/drush/drush/includes/command.inc:231
        PHP   8. call_user_func_array:{/home/travis/.composer/vendor/drush/drush/includes/command.inc:422}() /home/travis/.composer/vendor/drush/drush/includes/command.inc:422
        PHP   9. drush_behat() /home/travis/.composer/vendor/drush/drush/includes/command.inc:422
        PHP  10. drush_behat_op_create_node() drush/behat-drush-endpoint/behat.d7.drush.inc:67
        PHP  11. _drush_behat_expand_entity_fields() drush/behat-drush-endpoint/behat.d7.drush.inc:92
        PHP  12. _drush_behat_get_field_handler() drush/behat-drush-endpoint/behat-drush-common.inc:16
        PHP  13. _drush_behat_get_field_handler_common() drush/behat-drush-endpoint/behat.d7.drush.inc:219
        Drush command terminated abnormally due to an unrecoverable error.       [error]
        Error: Class '\Drupal\Driver\Fields\Drupal7\DefaultHandler' not found
        in
        drush/behat-drush-endpoint/behat-drush-common.inc,
        line 41
         (RuntimeException)

Please sign in to comment.