-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 810 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 810 Bytes
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
{
"name": "windwalker/validator",
"type": "windwalker-package",
"description": "Windwalker Validator package",
"keywords": ["windwalker", "framework", "validator"],
"homepage": "https://github.com/ventoviro/windwalker-validator",
"license": "LGPL-2.0-or-later",
"require": {
"php": ">=7.1.3",
"symfony/polyfill-mbstring": "^1.8"
},
"require-dev": {
"windwalker/test": "~3.0",
"windwalker/compare": "~3.0"
},
"suggest": {
"windwalker/compare": "Install ~3.0 if you want to use CompareValidator."
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Windwalker\\Validator\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}