Skip to content

Instantly share code, notes, and snippets.

@heineck
heineck / install_psql_php.sh
Created January 29, 2016 19:47 — forked from doole/install_psql_php.sh
Install PostgreSQL PHP extensions on Mac OS X
#!/bin/bash
# Check PHP version
#php --version
PHP_VER=$(php -v | head -1 | awk '{ print $2 }')
# Mavericks (10.9)
#PHP_VER="5.4.17"
# Yosemite (10.10), El Capitan (10.11)
#PHP_VER="5.5.27"