forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (57 loc) · 1.8 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "behat/behat",
"description": "Scenario-oriented BDD framework for PHP",
"keywords": ["BDD", "ScenarioBDD", "StoryBDD", "Examples", "Scrum", "Agile", "User story", "Symfony", "business", "development", "testing", "documentation"],
"homepage": "http://behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "http://everzet.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-mbstring": "*",
"behat/gherkin": "^4.9.0",
"behat/transliterator": "^1.2",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
"symfony/translation": "^4.4 || ^5.0 || ^6.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0",
"psr/container": "^1.0"
},
"require-dev": {
"symfony/process": "^4.4 || ^5.0 || ^6.0",
"phpunit/phpunit": "^8.5 || ^9.0",
"herrera-io/box": "~1.6.1",
"container-interop/container-interop": "^1.2",
"vimeo/psalm": "^4.8"
},
"suggest": {
"ext-dom": "Needed to output test results in JUnit format."
},
"autoload": {
"psr-4": {
"Behat\\Behat\\": "src/Behat/Behat/",
"Behat\\Testwork\\": "src/Behat/Testwork/",
"Behat\\Step\\": "src/Behat/Step/",
"Behat\\Hook\\": "src/Behat/Hook/"
}
},
"autoload-dev": {
"psr-4": {
"Behat\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"bin": ["bin/behat"]
}