I'm learning laravel and trying to install laravel collective. Using Xampp, PHP 7.3.4, Laravel 5.8.14.
I get the following issue in GitBash when trying to do so:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- league/flysystem 1.0.51 requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.
- league/flysystem 1.0.51 requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.
- league/flysystem 1.0.51 requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.
- Installation request for league/flysystem (locked at 1.0.51) -> satisfiable by league/flysystem[1.0.51].
To enable extensions, verify that they are enabled in your .ini files:
- C:\Program Files (x86)\iis express\PHP\v7.1\php.ini
You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.
in my php.ini file the extension=php_fileinfo.dll
line is not commented, I'm editing the xampp/htdocs/php/php.ini
file which is right according to phpinfo()
but the above would seem to indicate the php.ini
file on my machine.
php --ini produces the following:
Configuration File (php.ini) Path: C:\windows
Loaded Configuration File: C:\Program Files (x86)\iis express\PHP\v7.1\php.ini
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
Not sure where to go from here?