-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.3 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
{
"name": "spiral/validator",
"type": "library",
"description": "Nested validation, Checkers, Conditional Validation",
"license": "MIT",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/validator/issues",
"source": "https://github.com/spiral/validator"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"spiral/core": "^3.6",
"spiral/files": "^3.1",
"spiral/streams": "^3.1",
"spiral/translator": "^3.1",
"spiral/filters": "^3.1",
"spiral/validation": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.20",
"spiral/testing": "^2.0",
"spiral/hmvc": "^3.1",
"vimeo/psalm": "^4.21"
},
"autoload": {
"psr-4": {
"Spiral\\Validator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Validator\\App\\": "tests/app",
"Spiral\\Validator\\Tests\\": "tests/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}