-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.08 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
{
"name": "klimick/decode",
"description": "Decoding untrusted data in typesafe way",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Klimenko Andrew (klimick)",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Klimick\\Decode\\": ["./src"],
"Klimick\\PsalmDecode\\": ["./psalm"]
},
"files": [
"decoders.php",
"constraints.php",
"utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Klimick\\Decode\\Test\\": ["./test"]
}
},
"require": {
"php": "^8.0",
"fp4php/functional": "^4.18",
"symfony/polyfill-php81": "^1.26"
},
"require-dev": {
"vimeo/psalm": "4.23.0",
"klimick/psalm-show-type": "^1.0",
"psalm/plugin-phpunit": "^0.15.1",
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.4",
"rregeer/phpunit-coverage-check": "^0.3.1",
"fp4php/psalm-toolkit": "^2.0"
}
}