PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, January 21, 2022

[FIXED] Error when installing uberproxy/phpclient using composer

 January 21, 2022     composer-php, php     No comments   

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
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing