Skip to content

Instantly share code, notes, and snippets.

@Subtixx
Last active February 29, 2024 13:06
Show Gist options
  • Save Subtixx/85ab724c3a91a938dcca7ab59345393b to your computer and use it in GitHub Desktop.
Save Subtixx/85ab724c3a91a938dcca7ab59345393b to your computer and use it in GitHub Desktop.
Laravel Modules (nwidart) Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[A-Za-z0-9 -_]+$"
},
"alias": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "string"
},
"keywords": {
"type": "array",
"items": {}
},
"order": {
"type": "integer"
},
"providers": {
"type": "array",
"items": {}
},
"aliases": {
"type": "array",
"items": {}
},
"files": {
"type": "array",
"items": {}
},
"requires": {
"type": "array",
"items": {}
}
},
"required": [
"name",
"alias",
"description",
"keywords",
"providers",
"files"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment