-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.32 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.32 KB
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
{
"name": "drevops/behat-steps",
"description": "Collection of steps for Behat",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex@drevops.com",
"homepage": "https://drevops.com",
"role": "Maintainer"
}
],
"homepage": "https://github.com/drevops/behat-steps",
"support": {
"issues": "https://github.com/drevops/behat-steps/issues",
"source": "https://github.com/drevops/behat-steps"
},
"require": {
"php": ">=8.2",
"behat/behat": "^3.14",
"behat/mink": ">=1.11",
"behat/mink-selenium2-driver": ">=1.7",
"drupal/drupal-extension": "^5.3.1"
},
"require-dev": {
"alexskrypnyk/phpunit-helpers": "^0.15.0",
"cweagans/composer-patches": "^2.0",
"dantleech/gherkin-lint": "^0.2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"drevops/behat-phpserver": "^2.1.1",
"drevops/behat-screenshot": "^2.1",
"drevops/phpcs-standard": "^0.7",
"drupal/coder": "^8.3.28",
"dvdoug/behat-code-coverage": "^5.3.2.1",
"ergebnis/composer-normalize": "^2.47",
"mglaman/phpstan-drupal": "^2.0.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpspec/prophecy-phpunit": "^2.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.0.0",
"phpunit/phpunit": "^11",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"DrevOps\\BehatSteps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DrevOps\\BehatSteps\\Tests\\": "tests/phpunit/src/"
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"patches": {
"mglaman/phpstan-drupal": {
"Support for custom Drupal root": "https://patch-diff.githubusercontent.com/raw/mglaman/phpstan-drupal/pull/873.diff"
}
}
}
}