Skip to content

Commit

Permalink
Merge pull request #114 from acquia/ACMS-1925
Browse files Browse the repository at this point in the history
ACMS-1925: Add Starter kit validation.
  • Loading branch information
vishalkhode1 authored Aug 24, 2023
2 parents 1ed77ce + bbb4488 commit 954a43f
Show file tree
Hide file tree
Showing 10 changed files with 312 additions and 167 deletions.
41 changes: 41 additions & 0 deletions acms/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"type": "array",
"properties": {
"name": {
"type": "string",
"required": true
},
"description": {
"type": "string",
"required": true
},
"modules": {
"type": "array",
"properties": {
"require": {
"type": "array"
},
"install": {
"type": "array"
}
}
},
"themes": {
"type": "array",
"properties": {
"require": {
"type": "array"
},
"install": {
"type": "array"
},
"admin": {
"type": "string"
},
"default": {
"type": "string"
}
}
}
}
}
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"require": {
"acquia/drupal-environment-detector": "^1.4",
"composer/composer": "^2.2",
"justinrainbow/json-schema": "^5.2",
"stecman/symfony-console-completion": "^0.11.0 || ^0.12.1",
"symfony/config": "^4.4 || ^5 || ^6",
"symfony/console": "^4.4 || ^5 || ^6",
Expand Down
Loading

0 comments on commit 954a43f

Please sign in to comment.