-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
46 lines (46 loc) · 1.09 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
{
"name": "prewk/result",
"description": "Result object for PHP inspired by Rust",
"license": "(MIT or Apache-2.0)",
"type": "library",
"authors": [
{
"name": "Oskar Thornblad",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"prewk/option": ">= 1.3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "2.42.0",
"infection/infection": "0.27.11",
"phpunit/phpunit": "10.5.15",
"psalm/plugin-phpunit": "0.19.0",
"symplify/easy-coding-standard": "12.1.14",
"vimeo/psalm": "5.24.0"
},
"autoload": {
"psr-4": {
"Prewk\\": "src/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Prewk\\Result\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1.0"
}
}
}