Skip to content

Instantly share code, notes, and snippets.

@patrickmaciel
Last active August 29, 2015 14:16
Show Gist options
  • Save patrickmaciel/d1dbdb7788950bee40f8 to your computer and use it in GitHub Desktop.
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
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