Last active
August 29, 2015 14:16
-
-
Save patrickmaciel/d1dbdb7788950bee40f8 to your computer and use it in GitHub Desktop.
Install php 5.6 in mac os yosemite with php-fpm and nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew tap homebrew/dupes && \ | |
brew tap homebrew/versions && \ | |
brew tap homebrew/dupes && \ | |
brew reinstall php56 \ | |
--with-fpm \ | |
--without-apache \ | |
--with-mysql \ | |
--with-intl \ | |
--with-mcrypt \ | |
--with-postgresql \ | |
--with-curl \ | |
--with-openssl \ | |
--with-zlip \ | |
--with-pdo-postgresql \ | |
--with-pdo-mysql \ | |
--with-xsl \ | |
--with-ldap \ | |
--with-xmlrpc \ | |
--with-iconv \ | |
--with-bz2 \ | |
--with-gd \ | |
--with-pear \ | |
--with-imagick \ | |
--with-soap \ | |
--with-mhash \ | |
--with-pcre-regex \ | |
--with-gettext \ | |
--with-phar \ | |
--with-mbstring \ | |
--with-posix \ | |
--with-json \ | |
--with-bcmath \ | |
--with-gmp \ | |
--with-ctype \ | |
--with-dom \ | |
--with-dba \ | |
--with-psl \ | |
--with-tokenizer \ | |
--with-tidy \ | |
--with-xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment