Initial implementation
Showing
- README.md 1 addition, 1 deletionREADME.md
- composer.json 24 additions, 2 deletionscomposer.json
- src/Handler.php 145 additions, 0 deletionssrc/Handler.php
- src/Plugin.php 61 additions, 0 deletionssrc/Plugin.php
- templates/FeatureContext.php.twig 8 additions, 0 deletionstemplates/FeatureContext.php.twig
- templates/anonymous.feature.twig 30 additions, 0 deletionstemplates/anonymous.feature.twig
- templates/behat.yml.twig 49 additions, 0 deletionstemplates/behat.yml.twig
... | ... | @@ -2,7 +2,12 @@ |
"name": "lakedrops/behat4drupal", | ||
"description": "Composer Plugin to prepare Drupal project for Behat tests.", | ||
"type": "composer-plugin", | ||
"keywords": ["Drupal", "Development", "Docker", "Behat"], | ||
"keywords": [ | ||
"Drupal", | ||
"Development", | ||
"Docker", | ||
"Behat" | ||
], | ||
"homepage": "https://gitlab.lakedrops.com/composer/plugin/behat4drupal", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
... | ... | @@ -24,10 +29,19 @@ |
"source": "https://gitlab.lakedrops.com/composer/plugin/behat4drupal/tree/master" | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"behat/behat": "^3.5", | ||
"behat/mink": "^1.7", | ||
"behat/mink-goutte-driver": "^1.2", | ||
"behat/mink-selenium2-driver": "^1.3", | ||
"behat/web-api-extension": "^1.0@dev", | ||
"composer-plugin-api": "^1.0.0", | ||
"drupal/drupal-extension": "^3.4", | ||
"jcalderonzumba/gastonjs": "^1.2", | ||
"jcalderonzumba/mink-phantomjs-driver": "^0.3", | ||
"lakedrops/composer-scripts": "^1.0.0", | ||
"lakedrops/docker4drupal": "^1.0.0", | ||
"lakedrops/dotenv": "^1.0.0", | ||
"php": ">=5.6", | ||
"twig/twig": "^1.23.1" | ||
}, | ||
"require-dev": { | ||
... | ... | @@ -50,6 +64,14 @@ |
"description": "(Re-)Configure Behat for this project." | ||
} | ||
} | ||
}, | ||
"scripts-description": { | ||
"lakedrops-composer-scripts": "Scan LakeDrops plugins for scripts.", | ||
"d4d": "(Re-)Configure docker for this project." | ||
} | ||
}, | ||
"scripts": { | ||
"lakedrops-composer-scripts": "LakeDrops\\ComposerScripts\\Plugin::scripts", | ||
"d4d": "LakeDrops\\Docker4Drupal\\Plugin::config" | ||
} | ||
} |
src/Handler.php
0 → 100644
src/Plugin.php
0 → 100644
templates/FeatureContext.php.twig
0 → 100644
templates/anonymous.feature.twig
0 → 100644
templates/behat.yml.twig
0 → 100644
Please register or sign in to comment