From 370819914f97259652aea31100b3111720e2cc17 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Sep 2017 12:27:25 +0200 Subject: backport --- composer.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d627882 --- /dev/null +++ b/composer.json @@ -0,0 +1,47 @@ +{ + "name": "behat/gherkin", + "description": "Gherkin DSL parser for PHP 5.3", + "keywords": ["BDD", "parser", "DSL", "Behat", "Gherkin", "Cucumber"], + "homepage": "http://behat.org/", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + + "require": { + "php": ">=5.3.1" + }, + + "require-dev": { + "symfony/yaml": "~2.3|~3", + "symfony/phpunit-bridge": "~2.7|~3", + "phpunit/phpunit": "~4.5|~5" + }, + + "suggest": { + "symfony/yaml": "If you want to parse features, represented in YAML files" + }, + + "autoload": { + "psr-0": { + "Behat\\Gherkin": "src/" + } + }, + + "autoload-dev": { + "psr-4": { + "Tests\\Behat\\": "tests/Behat/" + } + }, + + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + } +} -- cgit