mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
26 lines
978 B
JSON
26 lines
978 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/containerServices.json",
|
|
"title": "app/containerServices",
|
|
"description": "Definitions of container services. https://docs.espocrm.com/development/di/#container-services",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "A service name.",
|
|
"properties": {
|
|
"className": {
|
|
"type": "string",
|
|
"description": "A service class."
|
|
},
|
|
"loaderClassName": {
|
|
"type": "string",
|
|
"description": "A service loader class. Should implement Espo\\Core\\Container\\Loader interface."
|
|
},
|
|
"settable": {
|
|
"type": "boolean",
|
|
"description": "Whether the service can be set to the container externally (with the `set` method)."
|
|
}
|
|
}
|
|
}
|
|
}
|