forked from cucumber/gherkin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "cucumber/gherkin",
"description": "Gherkin parser",
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Cucumber\\Gherkin\\": [
"src/",
"src-generated/"
]
}
},
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"cucumber/messages": ">=19.1.4 <=26"
},
"require-dev": {
"phpunit/phpunit": "^10.5||^11.0",
"vimeo/psalm": "5.26.1",
"friendsofphp/php-cs-fixer": "^3.51",
"psalm/plugin-phpunit": "^0.19.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/cucumber/messages-php",
"options": {
"versions": {
"cucumber/messages": "19.1.4"
}
}
}
]
}