简体   繁体   中英

Error: composer require conedevelopment/bazar

Loading composer repositories with package information
 Updating dependencies
 Your requirements could not be resolved to an installable set of packages.
 
   Problem 1
     - Root composer.json requires PHP extension ext-gd * but it is missing from your system. Install or enable PHP's gd extension.
   Problem 2
     - Root composer.json requires conedevelopment/bazar ^0.4.5 -> satisfiable by conedevelopment/bazar[v0.4.5].
     - conedevelopment/bazar v0.4.5 requires ext-gd * -> it is missing from your system. Install or enable PHP's gd extension.
 
 To enable extensions, verify that they are enabled in your .ini files:
     - C:\xampp\php\php.ini
 You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.
 Failed to update packages for  ./composer.json.

When I went to install the Bazar library in a laravel project, I had this problem.

After googling, I got this solution.

Solving the error on Windows 10 and PHP 8 . I followed these steps:

Step 1: composer require "ext-gd:*" --ignore-platform-reqs

Step 2: Abra o arquivo chamado php.ini , it is usually found in the following directory C:\xampp\php\php.ini

Step 3: With the file open you will have to search for ;extension=gd and update it to extension=gd

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM