-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.43 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "sudeychenko/user-input-processor",
"description": "Denormalizer and validator for any kind of user input.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/sudeychenko/user-input-processor",
"readme": "./README.md",
"keywords": [
"denormalizer",
"validator",
"forms"
],
"authors": [
{
"name": "Sudeychenko Alex",
"email": "sudeychenko.a.a@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/sudeychenko/user-input-processor/issues",
"forum": "https://github.com/sudeychenko/user-input-processor/discussions",
"source": "https://github.com/sudeychenko/user-input-processor",
"docs": "https://github.com/sudeychenko/user-input-processor/blob/main/README.md"
},
"require": {
"php": ">= 8.4",
"ext-mbstring": "*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"UserInputProcessor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\UserInputProcessor\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^12",
"psalm/plugin-phpunit": "^0.19.5",
"vimeo/psalm": "^6.13.1",
"dg/bypass-finals": "^1.9",
"fakerphp/faker": "^1.24"
}
}