user633440
user633440

Reputation:

Warning: Skipping shivammathur/php/php: most recent version 8.2.0 not installed

Why am I getting the message "Warning: Skipping shivammathur/php/php: most recent version 8.2.0 not installed in Homebrew?

Upvotes: 0

Views: 1262

Answers (1)

user633440
user633440

Reputation:

To remove this warning and install 8.2.0, run:

brew unlink php

brew tap shivammathur/php

brew install shivammathur/php/[email protected]

Then check your PHP version.

php -v

PHP 8.2.0 (cli) (built: Dec 8 2022 03:36:07) (NTS) Copyright (c) The PHP Group Zend Engine v4.2.0, Copyright (c) Zend Technologies with Zend OPcache v8.2.0, Copyright (c), by Zend Technologies

Upvotes: 2

Related Questions