SOFTEDGE / composer-schema.json
akra35567's picture
Upload 37 files
2da3758 verified
raw
history blame contribute delete
683 Bytes
{
"$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" }
}
}