composer.json 430 B

12345678910111213141516171819202122232425262728
  1. {
  2. "authors": [
  3. {
  4. "name": "Frédéric G. MARAND",
  5. "email": "fgm@osinet.fr"
  6. }
  7. ],
  8. "autoload": {
  9. "psr-4": {
  10. "" : "features/extensions"
  11. }
  12. },
  13. "config": {
  14. "bin-dir": "bin"
  15. },
  16. "description": "Sample Behat extension",
  17. "name": "osinet/demo-behat-extension",
  18. "license": "GPL-3.0+",
  19. "minimum-stability": "dev",
  20. "require": {
  21. "behat/behat": "~2.5",
  22. "behat/mink": "*"
  23. }
  24. }