-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.34 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
{
"name": "dantleech/gherkin-lint",
"description": "Gherkin linter",
"type": "project",
"bin": [
"bin/gherkinlint"
],
"require": {
"php": "^8.1",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/finder": "^5.0|^6.0|^7.0",
"symfony/filesystem": "^5.0|^6.0|^7.0",
"symfony/string": "^5.1|^6.0|^7.0",
"cucumber/gherkin": "^24.0",
"cucumber/messages": "^19.0",
"dantleech/invoke": "^2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"DTL\\GherkinLint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DTL\\GherkinLint\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Daniel Leech",
"email": "dan.t.leech@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"symfony/var-dumper": "^6.0",
"symfony/process": "^6.0",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.22",
"friendsofphp/php-cs-fixer": "^3.8"
},
"scripts": {
"integrate": [
"vendor/bin/php-cs-fixer fix",
"vendor/bin/psalm",
"vendor/bin/phpunit",
"bin/gherkinlint lint tests/Example",
"GHERKINLINT_DEV=1 bin/gherkinlint ruledocs docs/rules.md"
]
}
}