Elao / accesseo

Provide accessibility and SEO insights of your page in Symfony profiler
MIT License
29 stars 3 forks source link

[Composer] Could not find a version of package elao/accesseo #99

Closed vinceAmstoutz closed 2 years ago

vinceAmstoutz commented 2 years ago

According to the doc, when I run composer require --dev elao/accesseo

I have :

[InvalidArgumentException] Could not find a version of package elao/accesseo matching your minimum-stability (stable). Require it with an explicit version const raint allowing its desired stability.

I have already test with the edition of the composer.json.

ogizanagi commented 2 years ago

Hi @vinceAmstoutz

Indeed, since the bundle was only released in beta for now, you can install it using:

composer require --dev elao/accesseo:^1.0@beta

or changing your minimum-stability in your composer.json file to allow beta dependencies.

al2b commented 2 years ago

Thank you @ogizanagi !