Hi,
I'm trying to start the development of my first extension, but I'm having difficulties following the guide in the documentation.
https://docs.flarum.org/extend/start
I'm at the final step, to install my extension. This is the error message I'm getting:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires mbl/flarum-hello-world, it could not be found in any version, there may be a typo in the package name.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
- It's a private package and you forgot to add a custom repository to find it
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
I've also added:
"minimum-stability": "dev",
"repositories": [{
"type": "path",
"url": "packages/*"
}]
to the composer file. (I've also tried the full path "C:/path/to/packages/*")
I'm using XAMPP on my local Windows machine, and I routed my DocRoot folder to a custom one and Flarum seems to be generally running fine. And I can install external extensions with no issues.
Has anyone experienced the same thing?
Thanks!