This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
Is it possible to delete private plugins and themes from your account, I'm trying out the new composer plugin/theme features to install private repositories. However it doesn't seem possible to install from a local source if you have private plugins and themes using the same name.
Example:
If I have a private plugin using the code Acme.Blog
then I can't install a plugin of the same name from local:
php artisan plugin:install Acme.Blog --from=../private-plugins/acme-blog
It always installs the private plugin from my October account.
Hi Damian!
This is interesting, it must be that composer is finding a "better version" from the October gateway. We can certainly delete private plugins for you, just send us an email to hello@octobercms.com with the ones you want removed.
Thanks!
Hey again, there is another way to resolve this by opening the composer.json file and looking at the repositories
key. Composer will add repositories from old to new, but it will give priority to the older definitions.
So if you move this "octobercms" entry to the very end, it will give your private plugins more priority.
"repositories": {
"octobercms": {
"type": "composer",
"url": "https://gateway.octobercms.com"
}
}
Hope this helps
1-3 of 3