The sodium extension is only needed for argon2, iff:
- PHP is < 8.4 and built without libargon2
With PHP < 8.4 you can also enable argon2 without sodium by compiling
with libargon2 support.
With PHP 8.4 the argon2 support is included in php-openssl which is
already a hard requirement of Nextcloud.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
- `bcmath` is not needed anymore.
- `gmp` is not required but recommended now for WebAuthn.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
After https://github.com/nextcloud/server/pull/46151, Nextcloud does not require `apc.enable_cli` to be enabled anymore, but will fallback to the dummy NullCache instead for CLI calls. All mentions of this PHP configuration option are hence removed.
Additionally, one left mention of `opcache.enable_cli` is removed, which was never required.
Signed-off-by: MichaIng <micha@dietpi.com>