my theme is stuck at v1.0.3 while i published new version and now is at 1.0.11.
How do we update and deploy a new version of a theme?
my theme is stuck at v1.0.3 while i published new version and now is at 1.0.11.
How do we update and deploy a new version of a theme?
like plugins, themes has composer.json specification too
see vanilla-theme/composer.json at master · rainlab/vanilla-theme · GitHub
thanks, i have that compose.json already,
still not working for plugin on my side, neither using the backend nor composer.
weird
and same for my theme, it does not update through composer even though I push a new tag on gh.
here is my composer.json
"require": {
"php": "^8.0.2",
"october/rain": "^3.5",
"laravel/framework": "^9.0",
"october/all": "^3.5",
"rainlab/user-plugin": "^3.0",
"inherent/campus-plugin": "^1.2.0",
"inherent/ecourses-theme": "^1.0",
"rainlab/pages-plugin": "^2.0",
"rainlab/builder-plugin": "^2.0",
"romanov/clearcachewidget-plugin": "^1.3",
"hashids/hashids": "^4.1",
"php-ffmpeg/php-ffmpeg": "^1.1",
"rainlab/deploy-plugin": "^2.2",
"samuell/cdn-plugin": "^1.0"
},
...
"repositories": {
"octobercms": {
"type": "composer",
"url": "https://gateway.octobercms.com",
"only": ["october/*", "*-plugin", "*-theme"]
},
"inherent/campus-plugin": {
"type": "git",
"url": "git@github.com:chrisvidal/oc-campus-plugin.git"
},
"inherent/ecourses-theme": {
"type": "git",
"url": "git@github.com:chrisvidal/oc-ecourses-theme.git"
}
}
should I put this instead ?
"inherent/campus-plugin": "*",
"inherent/ecourses-theme": "*",