Issue
I'm getting the below error when trying to install uberproxy/phpclient using composer via composer require uberproxy/phpclient
[InvalidArgumentException] Could not find package uberproxy/php-client at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability`
Anyone know how I can resolve this?
Solution
I was finally able to figure it out. I changed the minimum stability setting in the composer.json
file to read as below
{
"minimum-stability": "dev",
}
I was then able to run composer require uberproxy/phpclient
without running into any errors.
Answered By - kevthanewversi
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.