ali_254 Posted June 8, 2022 Share Posted June 8, 2022 (edited) Hi, I downloaded a project from GitHub. When I execute "composer update" command , I get the following error: Your requirements could not be resolved to an installable set of packages please guide me Edited June 8, 2022 by ali_254 Quote Link to comment Share on other sites More sharing options...
ali_254 Posted June 8, 2022 Author Share Posted June 8, 2022 please guide Quote Link to comment Share on other sites More sharing options...
requinix Posted June 8, 2022 Share Posted June 8, 2022 Sure would help if you posted the rest of the output, not just the first line of it. 1 Quote Link to comment Share on other sites More sharing options...
ali_254 Posted June 9, 2022 Author Share Posted June 9, 2022 Your requirements could not be resolved to an installable set of packages. Â Problem 1 Â Â Â - Root composer.json requires php ^7.2 but your php version (8.1.0) does not satisfy that requirement. Â Problem 2 Â Â Â - laravel/passport[v8.3.0, ..., 8.x-dev] require php ^7.2 -> your php version (8.1.0) does not satisfy that requirement. Â Â Â - Root composer.json requires laravel/passport ^8.3 -> satisfiable by laravel/passport[v8.3.0, ..., 8.x-dev]. Quote Link to comment Share on other sites More sharing options...
requinix Posted June 9, 2022 Share Posted June 9, 2022 The error seems clear to me. What don't you understand about it? Quote Link to comment Share on other sites More sharing options...
ali_254 Posted June 9, 2022 Author Share Posted June 9, 2022 9 minutes ago, requinix said: The error seems clear to me. What don't you understand about it? I understand the mistake, but to solve it; I have not found a solution Quote Link to comment Share on other sites More sharing options...
requinix Posted June 9, 2022 Share Posted June 9, 2022 Your composer.json says it needs to use PHP ^7.2, meaning 7.2 or 7.3 or 7.4. laravel/passport needs ^7.2 as well. So downgrade your version of PHP to 7.2/7.3/7.4, or update your composer.json and laravel/passport dependency such that you can use PHP 8.1 with it. 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.