This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.54 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
55
56
57
58
59
60
61
62
{
"name": "utilities-php/validator",
"description": "Validator utility for PHP",
"license": "MIT",
"keywords": [
"php",
"utilities",
"validator"
],
"homepage": "https://github.com/utilities-php/utilities-php",
"support": {
"issues": "https://github.com/utilities-php/utilities-php/issues",
"source": "https://github.com/utilities-php/utilities-php",
"docs": "https://github.com/utilities-php/utilities-php"
},
"authors": [
{
"name": "LiteHex",
"email": "opensource@litehex.com"
},
{
"name": "Shahrad Elahi",
"email": "shahrad@litehex.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"symfony/intl": "^v6.1.6",
"utilities-php/common": "*"
},
"require-dev": {
"utilities-php/database": "*",
"fakerphp/faker": "^v1.20.0"
},
"scripts": {
"install": "composer install --ignore-platform-reqs",
"update": "composer update --ignore-platform-reqs"
},
"suggest": {
"fakerphp/faker": "Required to use the eloquent factory builder (^1.20.0).",
"symfony/intl": "Required to use the eloquent factory builder (^v6.1.0)."
},
"autoload": {
"files": [
"helper.php"
],
"psr-4": {
"Utilities\\Validator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UtilitiesTests\\Validator\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}