-
- Downloads
Initial code
parents
No related branches found
No related tags found
.editorconfig
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "lakedrops/behat4drupal", | |||
"description": "Composer Plugin to prepare Drupal project for Behat tests.", | |||
"type": "composer-plugin", | |||
"keywords": ["Drupal", "Development", "Docker", "Behat"], | |||
"homepage": "https://gitlab.lakedrops.com/composer/plugin/behat4drupal", | |||
"license": "GPL-2.0-or-later", | |||
"authors": [ | |||
{ | |||
"name": "Jürgen Haas", | |||
"email": "juergen@paragon-es.de", | |||
"homepage": "https://www.paragon-es.de", | |||
"role": "Drupal Expert" | |||
}, | |||
{ | |||
"name": "Richard Papp", | |||
"email": "richard.papp@boromino.com", | |||
"homepage": "http://www.boromino.com", | |||
"role": "Drupal Expert" | |||
} | |||
], | |||
"support": { | |||
"issues": "https://gitlab.lakedrops.com/composer/plugin/behat4drupal/issues", | |||
"source": "https://gitlab.lakedrops.com/composer/plugin/behat4drupal/tree/master" | |||
}, | |||
"require": { | |||
"php": ">=5.6", | |||
"composer-plugin-api": "^1.0.0", | |||
"lakedrops/composer-scripts": "^1.0.0", | |||
"lakedrops/dotenv": "^1.0.0", | |||
"twig/twig": "^1.23.1" | |||
}, | |||
"require-dev": { | |||
"composer/composer": "^1.5.0", | |||
"phpunit/phpunit": "^4.8.0" | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true, | |||
"autoload": { | |||
"psr-4": { | |||
"LakeDrops\\Behat4Drupal\\": "src/" | |||
} | |||
}, | |||
"extra": { | |||
"class": "LakeDrops\\Behat4Drupal\\Plugin", | |||
"lakedrops": { | |||
"scripts": { | |||
"b4d": { | |||
"callback": "LakeDrops\\Behat4Drupal\\Plugin::config", | |||
"description": "(Re-)Configure Behat for this project." | |||
} | |||
} | |||
} | |||
} | |||
} |
Please register or sign in to comment