Closed Zt-freak closed 4 years ago
Not ideal, but was getting the same error and was able to get it running with
composer install --ignore-platform-reqs
o thanks, it works!
The solution is named in the message:
- league/uri 5.3.0 requires *ext-intl -> the requested PHP extension intl is missing from your system.**
To enable extensions, verify that they are enabled in your .ini files: - C:\xampp\php\php.ini
You have to modify this file C:\xampp\php\php.ini
to enable the needed extension.
There should be the following line ;extension=php_intl.dll
(somewhere in the middle of the file). Remove the leading ;
to enable the extension. Then it should install.
--ignore-platform-reqs
is dangerous (if you don't know what you're doing), because it installs the packages whether your PHP supports them or not - this will result in runtime errors when one of the missing dependencies gets called!
thanks, I'll be using that.
Hello, I'm not that good with PHP and I've tried searching for a solution, but it seems I can't figure it out. If you have time, could you please help me out, thank you <3.
When I
composer install
I get the following message: