Hello everybody,
I know it sounds a bit stupid, but regarding this extension, I have no trobule whatsoever in running it on my test environment, but I cannot install it on a vanilla flarum install.
I added the extension to packagist repo with no problems, I validated the composer.json with composer itself, no errors nor warning, but when on my flarum server I try to install the extension I have the following error:
[InvalidArgumentException]
Could not find package flarum-isaa-opengraph at any version for your minimum-stability (beta). Check the package spelling or your minimum-stability
I really cannot figure it out what should I change in my composer.json, which is as follows:
{
"name": "isaa/flarum-isaa-opengraph",
"description": "Opengraph for flarum.",
"type": "flarum-extension",
"keywords": ["opengraph", "flarum", "embedding"],
"license": "MIT",
"authors": [
{ "name": "Marco Zambianchi for ISAA Techcnical Team", "email": "marco.zambianchi@isaa.it" }
],
"support": {
"issues": "https://github.com/ItalianSpaceAstronauticsAssociation/flarum-isaa-opengraph/issues",
"source": "https://github.com/ItalianSpaceAstronauticsAssociation/flarum-isaa-opengraph"
},
"require": {
"flarum/core": "^0.1.0-beta.5"
},
"extra": {
"flarum-extension": {
"title": "OpenGraph"
}
},
"autoload": {
"psr-4": {
"ISAA\\OpenGraph\\": "src/"
}
}
}
What the heck am I dong wrong?