I can't install Filament on Laravel 11/12
this error, help me pls
composer require filament/filament:"^3.3" -W
The "3.3" constraint for "filament/filament" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints
./composer.json has been updated
Running composer update filament/filament --with-all-dependencies
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 filament/filament 3.3 -> satisfiable by filament/filament[v3.3.0].
- filament/actions v3.3.0 requires openspout/openspout ^4.23 -> satisfiable by openspout/openspout[v4.23.0, ..., v4.30.0].
- filament/filament v3.3.0 requires filament/actions v3.3.0 -> satisfiable by filament/actions[v3.3.0].
- openspout/openspout[v4.23.0, ..., v4.28.5] require ext-zip * -> it is missing from your system. Install or enable PHP's zip extension.
Alternatively you can require one of these packages that provide the extension (or parts of it):
- badpixxel/paddock Just The Paddock Project
- openspout/openspout[v4.29.0, ..., v4.30.0] require php ~8.3.0 || ~8.4.0 -> your php version (8.2.12) does not satisfy that requirement.
To enable extensions, verify that they are enabled in your .ini files:
- D:\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-zip
to temporarily ignore these required extensions.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.Versions and constraints - Composer
A Dependency Manager for PHP
3 Replies
Solution
Enable the zip extension as the error says
Also it seems like you are on Windows so
^3.3
will be escaped to 3.3
Try using composer require filament/filament:"~3.3" -W
this work, thanks