-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
79 lines (79 loc) · 2.26 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
{
"name": "drevops/behat-phpserver",
"description": "Behat Context to enable PHP server for tests",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"behat",
"server"
],
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex@drevops.com"
}
],
"homepage": "https://github.com/drevops/behat-phpserver",
"support": {
"issues": "https://github.com/drevops/behat-phpserver/issues",
"source": "https://github.com/drevops/behat-phpserver"
},
"require": {
"php": ">=8.2",
"behat/behat": "^3.17",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"behat/mink-browserkit-driver": "^2.2",
"dantleech/gherkin-lint": "^0.2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"drupal/coder": "^8.3",
"dvdoug/behat-code-coverage": "^5.3",
"ergebnis/composer-normalize": "^2.45",
"escapestudios/symfony2-coding-standard": "^3.15",
"friends-of-behat/mink-extension": "^2.7.5",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^3.11.2",
"symfony/http-client": "^6 || ^7.2.2"
},
"replace": {
"integratedexperts/behat-phpserver": "self.version"
},
"autoload": {
"psr-0": {
"DrevOps\\BehatPhpServer": "src/"
},
"classmap": [
"apiserver"
]
},
"autoload-dev": {
"psr-4": {
"DrevOps\\BehatPhpServer\\Tests\\": "tests/phpunit"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"lint": [
"phpcs",
"phpstan",
"rector --clear-cache --dry-run",
"gherkinlint lint tests/behat/features"
],
"lint-fix": [
"rector --clear-cache",
"phpcbf"
],
"reset": "rm -Rf vendor composer.lock",
"test": "phpunit --no-coverage",
"test-bdd": "behat",
"test-coverage": "php -d pcov.directory=. vendor/bin/phpunit"
}
}