PHP 8.2 reached end of active support on 31 Dec 2024. As of today, PHP 8.2 is only receiving security related updates through 31 Dec 2026, at which point it will be considered end-of-life and receive no further updates. It's strongly recommended to upgrade to the latest version of PHP before then.
brew update
brew install php@8.2
brew link php@8.2
echo 'export PATH="/usr/local/opt/php@8.2/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
php -v
You should see output indicating PHP 8.2.x
php -i
This will display detailed PHP configuration information
echo '<?php phpinfo();' > test.php
php test.php
This should output PHP configuration information in your terminal