-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 843 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 843 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/api-validator",
"type": "library",
"description": "Schematicon Api Validator is library for normalization and validation you API schema definition.",
"keywords": ["api", "validator", "structure", "schematicon"],
"homepage": "https://github.com/schematicon/api-validator",
"license": "MIT",
"authors": [
{ "name": "Schematicon Project", "homepage": "https://github.com/schematicon/api-validator/graphs/contributors" }
],
"support": {
"issues": "https://github.com/schematicon/api-validator/issues"
},
"require": {
"php": ">=7.0",
"nette/neon": "~2.4",
"nette/utils": "~2.4",
"schematicon/validator": "@dev"
},
"require-dev": {
"nette/tester": "~1.7"
},
"autoload": {
"psr-4": { "Schematicon\\ApiValidator\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}