composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "behat/gherkin",
  3. "description": "Gherkin DSL parser for PHP",
  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": "~7.2|~8.0"
  17. },
  18. "require-dev": {
  19. "symfony/yaml": "~3|~4|~5",
  20. "symfony/phpunit-bridge": "~3|~4|~5",
  21. "phpunit/phpunit": "~8|~9",
  22. "cucumber/cucumber": "dev-gherkin-16.0.0"
  23. },
  24. "suggest": {
  25. "symfony/yaml": "If you want to parse features, represented in YAML files"
  26. },
  27. "autoload": {
  28. "psr-0": {
  29. "Behat\\Gherkin": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Tests\\Behat\\": "tests/Behat/"
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "4.4-dev"
  40. }
  41. },
  42. "repositories": [
  43. {
  44. "type": "package",
  45. "package": {
  46. "name": "cucumber/cucumber",
  47. "version": "dev-gherkin-16.0.0",
  48. "source": {
  49. "type": "git",
  50. "url": "https://github.com/cucumber/cucumber.git",
  51. "reference": "00f128c8dc2970a564d8a706567836700a7039f0"
  52. },
  53. "dist": {
  54. "type": "zip",
  55. "url": "https://api.github.com/repos/cucumber/cucumber/zipball/00f128c8dc2970a564d8a706567836700a7039f0",
  56. "reference": "00f128c8dc2970a564d8a706567836700a7039f0",
  57. "shasum": ""
  58. }
  59. }
  60. }
  61. ]
  62. }