-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 806 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 806 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
31
{
"name": "schematicon/validator",
"type": "library",
"description": "Schemation Validator is powerful validator of various data structures.",
"keywords": ["validator", "structure", "schematicon"],
"homepage": "https://github.com/schematicon/validator-php",
"license": "MIT",
"authors": [
{ "name": "Schematicon Project", "homepage": "https://github.com/schematicon/validator-php/graphs/contributors" }
],
"support": {
"issues": "https://github.com/schematicon/validator-php/issues"
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"nette/neon": "~2.4",
"nette/tester": "~1.7",
"tracy/tracy": "~2.4"
},
"autoload": {
"psr-4": { "Schematicon\\Validator\\": "src/" },
"classmap": ["src/exceptions.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}