[bug]
#3500
Replies: 1 comment 1 reply
-
Please check the full composer output, you are probably missing a php extension, in your case "ext-gd" |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
getting error when run
composer update
`Your requirements could not be resolved to an installable set of packages.
Problem 1
- phpoffice/phpspreadsheet[1.9.0, ..., 1.12.0] require php ^7.1 -> your php version (8.0.2) does not satisfy that requirement.
- phpoffice/phpspreadsheet[1.13.0, ..., 1.14.1] require php ^7.2 -> your php version (8.0.2) does not satisfy that requirement.
- phpoffice/phpspreadsheet[1.15.0, ..., 1.21.0] require ext-gd * -> it is missing from your system. Install or enable PHP's gd extension.
- Root composer.json requires phpoffice/phpspreadsheet ^1.9 -> satisfiable by phpoffice/phpspreadsheet[1.9.0, ..., 1.21.0].
To enable extensions, verify that they are enabled in your .ini files:
- C:\xampp\php\php.ini
You can also run
php --ini
in a terminal to see which files are used by PHP in CLI mode.Alternatively, you can run Composer with
--ignore-platform-req=ext-gd
to temporarily ignore these required extensions.`Beta Was this translation helpful? Give feedback.
All reactions