A centralized repository for PHP-related brews.
- Homebrew
- El Capitan, Sierra or High Sierra. Untested everywhere else.
Run the following in your command-line:
$ brew tap fzoske/homebrew-phpThe more information you provide and the more detailed your report is, the easier it is for us to fix it. An example of the best practice(s) for filling out bug reports can be seen here: https://github.com/Homebrew/homebrew-php/issues/1225.
Please refer to this section for more information.
Bugs inevitably happen - none of us are running EVERY conceivable setup - but hopefully the install process can be made smoother through the following tips:
- If you have recently upgraded your macOS version or Xcode, read this section.
- Upgrade your macOS to the latest patch version. So if you are on
10.13.0, upgrade to10.13.1etc. - Ensure Xcode is installed and up to date.
- Run
brew update. If you tapped an old version ofhomebrew-phpor have an old brew installation, this may cause some installation issues. - Run
brew upgrade. This will upgrade all installed formulae. Sometimes an old version of a formula is installed and this breaks our dependency management. Unfortunately, there is currently no way to force Homebrew to upgrade only those we depend upon. This is a possible fix for those withlibxmlrelated compilation issues. - If
brew doctorcomplains aboutError: Failed to import: homebrew-php-requirementor similar, you can find broken PHP requirement files usingfind $(brew --prefix)/Library/Formula -type l -name "*requirement.rb". Run this with the-deleteflag if you are sure the results of the find contain only the files producing import failures. You can also remove them manually. - Delete your
~/.pearrcfile before attempting to install aPHPversion, as the pear step will fail if an existing, incompatible version exists. We try to detect and remove them ourselves, but sometimes this fails. - Run
brew doctorand fix any issues you can. - If you upgraded to High Sierra
10.13.x, please also upgrade to the latest Xcode, 9.1. - File an awesome bug report, using the information in the next section.
- If you have a failing install due to
GD build test failed, try running the following before attempting to reinstall:
brew rm freetype jpeg libpng gd zlib
brew install freetype jpeg libpng gd zlibDoing all of these might be a hassle, but will more than likely ensure you either have a working install or get help as soon as possible.
If you have recently upgraded your macOS version or Xcode, you may have some compilation or missing libraries issues. The following information may help you solve most of the problems:
- Ensure you have properly upgraded Command Line Tools depending on your Xcode version.
- Proceed step by step to isolate the responsible formula. If you need to install
php71andphp71-imagick, don't dobrew install php71 php71-imagick. Just dobrew install php71, ensure everything is working as expected, check the output ofphpinfo(), restart your Apache server withsudo apachectl restart. Then you can install the next formulabrew install php71-imagick. - If
php56,php70orphp71build fails, remove all their dependencies and reinstall the formula. For instance: Ifbrew install php71fails, do the following:brew rm php71 && brew deps php71 | xargs brew rm. Ifbrew install php71 --with-gmpfails, do the following:brew rm php71 && brew deps php71 --with-gmp | xargs brew rm. Then reinstall a clean version of the formula:brew update && brew upgrade && brew install php71. - If an extension build fails, try also to remove all its dependencies and reinstall it.
- Sometimes it appears that a formula is not available anymore, do the following:
brew tap --repair.
An example of the best practice(s) for filling out bug reports can be seen here: https://github.com/Homebrew/homebrew-php/issues/1225.
Please include the following information in your bug report:
- macOS Version: eg. 10.13.1, 10.12.3
- Homebrew Version:
brew -v - PHP Version in use: stock-apple, homebrew-php stable, homebrew-php devel, homebrew-php head, custom
- Xcode Version: 9.1, 9.0, 8.1, 7 etc.
- Verify whether you have the
Command Line Toolsinstalled as well.
- Verify whether you have the
- Output of
gcc -v - Output of
php -v - Installation logs for the formula in question
- A link to the gist created with
brew gist-logs <formula-you-are-using>will contain these logs. - Or, if
brew gist-logsis not working:
- A link to the gist created with
New bug reports will be created with a template of this information for you to fill in.
This will help us diagnose your issues much quicker, as well as find similarities between different reported issues.
This repository contains PHP-related formulae for Homebrew.
(This replaces the PHP formulae that used to live under adamv's homebrew-alt repository.)
The purpose of this repository is to allow PHP developers to quickly retrieve working, up-to-date formulae. The mainline Homebrew repositories are maintained by non-php developers, so testing/maintaining PHP-related brews has fallen by the wayside. If you are a PHP developer using Homebrew, please contribute to this repository.
Note: For a list of available configuration options run:
$ brew options php71Once the tap is installed, you can install php54, php55, php56, php70, php71, php72, or any formulae you might need via:
$ brew install php71That's it!
Please also follow the instructions from brew info at the end of the install to ensure you properly installed your PHP version.
Using multiple PHP versions from homebrew-php is pretty straightforward.
If using Apache, you will need to update the LoadModule call. For convenience, simply comment out the old PHP version:
# /etc/apache2/httpd.conf
# Swapping from PHP 5.5 to PHP 7.1
# $HOMEBREW_PREFIX is normally `/usr/local`
# LoadModule php5_module $HOMEBREW_PREFIX/Cellar/php55/5.5.18/libexec/apache2/libphp5.so
LoadModule php7_module $HOMEBREW_PREFIX/Cellar/php71/7.1.11/libexec/apache2/libphp7.so
If using FPM, you will need to unload the plist controlling php, or manually stop the daemon, via your command line:
# Swapping from PHP 5.5 to PHP 7.1
# $HOMEBREW_PREFIX is normally `/usr/local`
$ cp $HOMEBREW_PREFIX/Cellar/php71/7.1.11/homebrew.mxcl.php71.plist ~/Library/LaunchAgents/
$ launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.php55.plist
$ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php71.plistIf you would like to swap the PHP you use on the command line, you should update the $PATH variable in either your .profile, .zshrc, .bashrc or .bash_profile:
# Swapping from PHP 7.0 to PHP 7.1
# export PATH="$(brew --prefix homebrew/php/php70)/bin:$PATH"
export PATH="$(brew --prefix homebrew/php/php71)/bin:$PATH"
Please be aware that you must make this type of change EACH time you swap between PHP minor versions. You will typically only need to update the Apache/FPM when upgrading your PHP patch version.
Pear is no longer compiled by default, instead you need to install php with the --with-pear option, such as: brew install php71 --with-pear.
Please note that all extensions installed with the included pear will be installed to the respective php's bin path. For example, supposing you installed PHP_CodeSniffer as follows:
$ pear install PHP_CodeSnifferIt would be nice to be able to use the phpcs command via command-line, or other utilities. You will need to add the installed php's bin directory to your path. The following would be added to your .bashrc or .bash_profile when running the php71 brew:
export PATH="$(brew --prefix php71)/bin:$PATH"Some caveats:
- Remember to use the proper PHP version in that export. So if you installed the
php70formula, usephp70instead ofphp71in the export. - Updating your installed PHP will result in the binaries no longer existing within your path. In such cases, you will need to reinstall the pear extensions. Alternatives include installing
pearoutside ofhomebrew-phpor using thehomebrew-phpversion of your extension. - Uninstalling your
homebrew-phpPHP formula will also remove the extensions.
See Contributing
- Proper PHP Versioning? See issue #8
- Pull out all PHP-related brews from Homebrew
See LICENSE.