-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1003 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
{
"name": "nicwortel/behat-unused-step-definitions-extension",
"type": "library",
"description": "A Behat extension that detects unused step definitions",
"license": "MIT",
"require": {
"php": "^8.1",
"behat/behat": "^3.9",
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"nicwortel/coding-standard": "^2.3",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.18.4",
"symfony/process": "^6.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"NicWortel\\BehatUnusedStepDefinitionsExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NicWortel\\BehatUnusedStepDefinitionsExtension\\Tests\\": "tests/"
}
}
}