forked from MacPaw/behat-messenger-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.59 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "macpaw/behat-messenger-context",
"type": "library",
"description": "Behat Context for testing Symfony Messenger component",
"keywords": [
"MacPaw",
"symfony",
"behat",
"BDD",
"Context",
"Messenger"
],
"authors": [
{
"name": "IiiigorGG",
"email": "roidloua@gmail.com",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
},
{
"name": "Yozhef Hisem",
"email": "hisemjo@gmail.com",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
}
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"behat/behat": "^3.0",
"symfony/messenger": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"BehatMessengerContext\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BehatMessengerContext\\Tests\\": "tests"
}
},
"scripts": {
"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",
"@code-style",
"@phpunit"
]
}
}