File size: 683 Bytes
2da3758 | 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 | {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"type": { "type": "string" },
"license": { "type": "string" },
"authors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"email": { "type": "string" }
}
}
},
"require": { "type": "object" },
"require-dev": { "type": "object" },
"autoload": { "type": "object" },
"config": { "type": "object" },
"minimum-stability": { "type": "string" }
}
}
|