-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathcomposer.json
98 lines (89 loc) · 2.99 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "behat/gherkin",
"description": "Gherkin DSL parser for PHP",
"keywords": ["BDD", "parser", "DSL", "Behat", "Gherkin", "Cucumber"],
"homepage": "https://behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "https://everzet.com"
}
],
"require": {
"php": "8.1.* || 8.2.* || 8.3.* || 8.4.*",
"composer-runtime-api": "^2.2"
},
"require-dev": {
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"phpunit/phpunit": "^10.5",
"cucumber/cucumber": "dev-gherkin-24.1.0",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2",
"phpstan/extension-installer": "^1",
"phpstan/phpstan-phpunit": "^2"
},
"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.x-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "cucumber/cucumber",
"version": "dev-gherkin-24.1.0",
"source": {
"type": "git",
"url": "https://github.com/cucumber/cucumber.git",
"reference": "1bd907bfcd246275e6d11f62c0885e654cec58cf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/cucumber/cucumber/zipball/1bd907bfcd246275e6d11f62c0885e654cec58cf",
"reference": "1bd907bfcd246275e6d11f62c0885e654cec58cf"
}
}
}
],
"scripts": {
"lint": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpstan analyze --ansi --no-progress --memory-limit 512M",
"vendor/bin/phpstan analyze bin/cucumber_changelog --ansi --no-progress --memory-limit 512M",
"vendor/bin/phpstan analyze bin/update_cucumber --ansi --no-progress --memory-limit 512M",
"vendor/bin/phpstan analyze bin/update_i18n --ansi --no-progress --memory-limit 512M",
"vendor/bin/php-cs-fixer check --diff --ansi --show-progress=dots --verbose"
],
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit --colors"
],
"fix": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/php-cs-fixer fix --diff --ansi --show-progress=dots"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}