-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
36 lines (36 loc) · 898 Bytes
/
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
{
"name": "cucumber/messages",
"description": "JSON schema-based messages for Cucumber's inter-process communication",
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*"
},
"require-dev": {
"vimeo/psalm": "^5.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.0",
"friendsofphp/php-cs-fixer": "^3.5",
"ramsey/uuid": "^4.5.0"
},
"autoload": {
"psr-4": {
"Cucumber\\Messages\\": [
"src",
"src-generated"
]
}
},
"autoload-dev": {
"psr-4": {
"Cucumber\\Messages\\": [
"src",
"src-generated",
"tests",
"tests/unit"
]
}
}
}