composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "behat/gherkin",
  3. "description": "Gherkin DSL parser for PHP 5.3",
  4. "keywords": ["BDD", "parser", "DSL", "Behat", "Gherkin", "Cucumber"],
  5. "homepage": "http://behat.org/",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Konstantin Kudryashov",
  11. "email": "ever.zet@gmail.com",
  12. "homepage": "http://everzet.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.1"
  17. },
  18. "require-dev": {
  19. "symfony/yaml": "~2.3|~3|~4",
  20. "symfony/phpunit-bridge": "~2.7|~3|~4",
  21. "phpunit/phpunit": "~4.5|~5"
  22. },
  23. "suggest": {
  24. "symfony/yaml": "If you want to parse features, represented in YAML files"
  25. },
  26. "autoload": {
  27. "psr-0": {
  28. "Behat\\Gherkin": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Tests\\Behat\\": "tests/Behat/"
  34. }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "4.4-dev"
  39. }
  40. }
  41. }