-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.89 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
{
"name": "macpaw/behat-redis-context",
"type": "symfony-bundle",
"description": "Behat redis context for testing",
"keywords": [
"MacPaw",
"symfony",
"behat",
"BDD",
"Context",
"Redis",
"Fixture"
],
"authors": [
{
"name": "IiiigorGG",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
},
{
"name": "Yozhef Hisem",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Staff Software Engineer"
}
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"behat/behat": "^3.0",
"predis/predis": "^1.0||^2.0",
"symfony/yaml": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.3 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"BehatRedisContext\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BehatRedisContext\\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",
"dev-checks": [
"composer validate",
"@phpstan",
"@phpunit",
"@code-style"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}