-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 2.17 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
{
"name": "macpaw/behat-api-context",
"type": "symfony-bundle",
"description": "Behat Context for testing Symfony Api",
"keywords": [
"MacPaw",
"symfony",
"behat",
"BDD",
"Context",
"Api"
],
"authors": [
{
"name": "IiiigorGG",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
},
{
"name": "Yozhef Hisem",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
}
],
"license": "MIT",
"require": {
"ext-json": "*",
"php": "^7.4 || ^8.0",
"behat/behat": "^3.0",
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.4.34 || ^6.0 || ^7.0.2",
"symfony/http-client": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"macpaw/similar-arrays": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"suggest": {
"doctrine/orm": "^2.0"
},
"autoload": {
"psr-4": {
"BehatApiContext\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BehatApiContext\\Tests\\": "tests"
}
},
"scripts": {
"composer-validate": "composer validate",
"phpstan": "./vendor/bin/phpstan analyse -l max",
"code-style": "./vendor/bin/phpcs",
"code-style-fix": "./vendor/bin/phpcbf",
"phpunit": "./vendor/bin/phpunit",
"phpunit-html-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=coverage",
"dev-checks": [
"composer validate",
"@phpstan",
"@code-style",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}