Install or enable PHP's sodium extension. To enable extensions, verify that they are enabled in your .ini files: - D:\phpEnv\php\php-8.0\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 `...
Problem1- Root composer.json requires PHP extension ext-imagick ^3.6but it is missingfromyour system. Installorenable PHP's imagick extension. To enable extensions, verify that they are enabled in your .ini files: - - /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini - /usr/local/e...
FROM php:8.2-cli RUN ( curl -sSLf https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions -o - || echo 'return 1' ) | sh -s \ gd xdebug Copying the script from a Docker image FROM php:7.2-cli COPY --from=mlocati/php-extension-inst...
FROMphp:7.2-cliCOPY--from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/RUNinstall-php-extensions gd xdebug Warning: by using this method you may use an outdated version of themlocati/php-extension-installerimage. You may want to rundocker pull mlocati/php-ex...
or enable PHP's sodium extension. - kreait/laravel-firebase 4.1.0 requires kreait/firebase-php ^6.0 -> satisfiable by kreait/firebase-php[6.0.0, ..., 6.x-dev]. - kreait/firebase-php[6.0.0, ..., 6.x-dev] require lcobucci/jwt ^4.1 -> satisfiable by lcobucci/jwt[4.1.0, ....
Laravel Mix Version: 2.1.11 (npm list --depth=0) Node Version (node -v): 8.11.2 NPM Version (npm -v): 5.6.0 Yarn Version (yarn -v): 1.7.0 OS: 10.13.4 Description: On a new installation of laravel spark after running composer install, npm...
In XAMPP Control Panel, click Config button on “Apache” row, and click “PHP (php.ini)“. In the php.ini file, find these rows and remove ; before each row: ;extension=intl ;extension=soap ;extension=sockets ;extension=sodium ;extension=xsl Expand memory_limit to 4G: memory_limit=4G...
location ~ \.php$ { fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; fastcgi_index index.php; root /usr/share/nginx/html; include fastcgi.conf; } Save and close the file. Then, start and enable nginx service using the commands given below. ...
Install or enable PHP's sodium extension: The error message indicates that the ext-sodium extension is missing from your PHP installation. You can install or enable this extension to resolve the issue. The method for installing or enabling the extension depends on your operating system and PHP ...
Here’s a sample Dockerfile. There aresomeextensions installed with this file that may not be necessary for you. Also, you’ll need to manually edit thephp.inifile to include the couchbase extension there. For me, I do this with a custom configuration file copied in with docker-compose....