-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.37 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
47
48
49
50
51
52
53
54
{
"name": "spiks/user-input-processor",
"description": "Denormalizer and validator for any kind of user input.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/spiks/user-input-processor",
"readme": "./README.md",
"keywords": [
"denormalizer",
"validator",
"forms"
],
"authors": [
{
"name": "Petr Flaks",
"email": "petr@flaks.dev",
"homepage": "https://flaks.dev",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/spiks/user-input-processor/issues",
"forum": "https://github.com/spiks/user-input-processor/discussions",
"source": "https://github.com/spiks/user-input-processor",
"docs": "https://github.com/spiks/user-input-processor/blob/main/README.md"
},
"require": {
"php": ">= 8.1",
"ext-mbstring": "*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spiks\\UserInputProcessor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Spiks\\UserInputProcessor\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.20"
}
}