-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.15 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
{
"name": "innmind/black-box",
"type": "library",
"description": "Test library",
"keywords": ["test", "fixtures", "property based testing"],
"homepage": "http://github.com/Innmind/BlackBox",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/Innmind/BlackBox/issues"
},
"require": {
"php": "~8.2",
"innmind/json": "^1.1",
"symfony/var-dumper": "~6.0|~7.0",
"phpunit/phpunit": "~10.0|~11.0",
"phpunit/php-timer": "~6.0|~7.0",
"phpunit/php-code-coverage": "~10.1|~11.0"
},
"autoload": {
"psr-4": {
"Innmind\\BlackBox\\": "src/"
},
"files": [
"src/Runner/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\BlackBox\\": "tests/",
"Fixtures\\Innmind\\BlackBox\\": "fixtures/"
}
},
"require-dev": {
"vimeo/psalm": "~5.6",
"ramsey/uuid": "^4.1",
"innmind/coding-standard": "~2.0"
}
}