Reply to thread

Currently stuck here, i get this error:



Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. It is recommended that you run [ICODE]composer update[/ICODE] or [ICODE]composer update <package name>[/ICODE].

Your lock file does not contain a compatible set of packages. Please run composer update.


  Problem 1

    - Root composer.json requires PHP extension ext-sockets * but it is missing from your system. Install or enable PHP's sockets extension.

  Problem 2

    - filament/support is locked to version v3.2.135 and an update of this package was not requested.

    - filament/support v3.2.135 requires ext-intl * -> it is missing from your system. Install or enable PHP's intl extension.

  Problem 3

    - league/flysystem-local is locked to version 3.29.0 and an update of this package was not requested.

    - league/flysystem-local 3.29.0 requires ext-fileinfo * -> it is missing from your system. Install or enable PHP's fileinfo extension.

  Problem 4

    - league/mime-type-detection is locked to version 1.16.0 and an update of this package was not requested.

    - league/mime-type-detection 1.16.0 requires ext-fileinfo * -> it is missing from your system. Install or enable PHP's fileinfo extension.

  Problem 5

    - openspout/openspout is locked to version v4.28.4 and an update of this package was not requested.

    - openspout/openspout v4.28.4 requires ext-fileinfo * -> it is missing from your system. Install or enable PHP's fileinfo extension.

  Problem 6

    - league/flysystem is locked to version 3.29.1 and an update of this package was not requested.

    - league/flysystem 3.29.1 requires league/flysystem-local ^3.0.0 -> satisfiable by league/flysystem-local[3.29.0].

    - league/flysystem-local 3.29.0 requires ext-fileinfo * -> it is missing from your system. Install or enable PHP's fileinfo extension.


To enable extensions, verify that they are enabled in your .ini files:

    - C:\Program Files\PHP\php.ini

You can also run [ICODE]php --ini[/ICODE] in a terminal to see which files are used by PHP in CLI mode.

Alternatively, you can run Composer with [ICODE]--ignore-platform-req=ext-sockets --ignore-platform-req=ext-intl --ignore-platform-req=ext-fileinfo[/ICODE] to temporarily ignore these required extensions.


Top