I a trying to write an extension for Bolt CM. I decided I should start by just doing the tutorial they provide, although I can't get it to work. When viewed on the "Extend"-page in the CMS itself the extension shows up but does not work. Instead, it shows local/author/urlfield — [INVALID] — [DISABLED].
I'm quite sure that the problem is located in the extensions/composer.json file. I added the namespace of my extension to the "require" array (second from above):
"require": {
"sahassar/gmaps": "^4.0",
"myname/myexension": "^1.0",
"larsvanscheijndel/urlfield": "^1.0",
"wikimedia/composer-merge-plugin": "^1.3"
}
If I change the name of the extension in this file, it changes in the CMS aswell.
I really can't find where to use namespaces, where to use file locations, and whether to use all lower case, camel case or any other type of casing.
Can anyone help? All input is appreciated.