summaryrefslogtreecommitdiffstats
path: root/config/schema.json
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 10:59:02 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 10:59:02 +0200
commit29000e2d6f49ed9b08b15a9f474dfb5b4145d800 (patch)
tree40e36f37d0e9641bf3c1caa451d0ce847a1dc2ab /config/schema.json
parent261572a9804dac790f658b7508d8b8485951f871 (diff)
move databases into dependencies section
Diffstat (limited to 'config/schema.json')
-rw-r--r--config/schema.json28
1 files changed, 14 insertions, 14 deletions
diff --git a/config/schema.json b/config/schema.json
index a6303f54a..7e44878c9 100644
--- a/config/schema.json
+++ b/config/schema.json
@@ -115,19 +115,11 @@
},
"additionalProperties": false
},
- "databases": {
- "type": "array",
- "items": {
- "type": "string",
- "enum": ["pgsql", "mysql", "sqlite3", "mssql", "oracle"]
- },
- "uniqueItems": true
- },
"categories": {
"type": "array",
"items": {
"type": "string",
- "enum": ["Filesystem", "Authentication", "PIM", "Multimedia",
+ "enum": ["Filesystem", "Authentication", "PIM", "Multimedia",
"Productivity", "Games", "Tools", "Other"]
},
"minItems": 1,
@@ -136,6 +128,14 @@
"dependencies": {
"type": "object",
"properties": {
+ "databases": {
+ "type": "array",
+ "items": {
+ "type": "string",
+ "enum": ["pgsql", "mysql", "sqlite3", "mssql", "oracle"]
+ },
+ "uniqueItems": true
+ },
"php": {
"type": "string",
"pattern": "^((=|<|>|<=|>=)?[0-9]+(\\.[0-9]+)*(,(=|<|>|<=|>=)?[0-9]+(\\.[0-9]+)*)*|\\*)$"
@@ -167,11 +167,11 @@
}
},
"required": [
- "name",
- "id",
- "description",
- "licence",
- "version",
+ "name",
+ "id",
+ "description",
+ "licence",
+ "version",
"authors",
"repository"
],