-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.38 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
{
"name": "kariricode/validator",
"description": "A powerful and flexible validation component for PHP, part of the KaririCode Framework. It provides configurable processors for validating data attributes in entities using a streamlined and efficient pipeline system.",
"keywords": [
"kariricode",
"validator",
"validation",
"data",
"attribute",
"processor",
"pipeline",
"entity",
"php"
],
"version": "1.0.0",
"homepage": "https://kariricode.org",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "community@kariricode.org"
}
],
"require": {
"php": "^8.3",
"kariricode/contract": "^2.7",
"kariricode/processor-pipeline": "^1.1",
"kariricode/property-inspector": "^1.0",
"kariricode/exception": "^1.0"
},
"autoload": {
"psr-4": {
"KaririCode\\Validator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\Validator\\Tests\\": "tests"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.9",
"enlightn/security-checker": "^2.0"
},
"support": {
"issues": "https://github.com/KaririCode-Framework/kariricode-validator/issues",
"source": "https://github.com/KaririCode-Framework/kariricode-validator"
}
}