I try to install php@7.3 using brew. But, it return error because it is versioned formula. What is it?
command: brew install php@7.3
result: Error: php@7.3 has been disabled because it is a versioned formula!
I try to install php@7.3 using brew. But, it return error because it is versioned formula. What is it?
command: brew install php@7.3
result: Error: php@7.3 has been disabled because it is a versioned formula!
You can only install supported versions of PHP with brew. However, there is the tap shivammathur/php which can be used to install unsupported version of PHP.
brew tap shivammathur/phpbrew install shivammathur/php/php@7.3brew link php@7.3The first step only needs to be done once. After adding the tap, you can install PHP version 5.6 - 8.2.
BTW, brew install php@7.4 gives out same warning, but does install php7, so this could be an option