Debian 9920 Published by

Ondřej Surý has released PHP 8.2.0 RC4 packages for Debian GNU/Linux 10 and 11.





To add the repository:
#!/bin/bash # To add this repository please do:

if [ "$(whoami)" != "root" ]; then
SUDO=sudo
fi

${SUDO} apt-get -y install apt-transport-https lsb-release ca-certificates curl
${SUDO} wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
${SUDO} sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
${SUDO} apt-get update
PHP 8.2.0-rc4 for Debian 10

PHP Packages
Issues Tracker

php-8.2.0RC4

- Core:
. Fixed bug GH-9655 (Pure intersection types cannot be implicitly nullable) (Girgias)
. Fixed bug GH-9589 (dl() segfaults when module is already loaded). (cmb, Arnaud)

- Streams:
. Fixed bug GH-9590 (stream_select does not abort upon exception or empty valid fd set). (Arnaud)