Skip to content

Instantly share code, notes, and snippets.

@dfsoeten
dfsoeten / install.sh
Last active September 24, 2019 07:54
Dotfiles Installation
#!/bin/bash
cd ~ && \
git init && \
git remote add origin https://github.com/dfsoeten/dotfiles.git && \
git fetch && \
git checkout master -f && \
echo "Dotfiles installed succesfully"
@dfsoeten
dfsoeten / tutorial.md
Created March 7, 2019 08:52
How to use the latest PHP version on MacOS

This tutorial assumes you have Homebrew installed.

  1. Install PHP 7.3 using brew brew install php

  2. Using brew info php or after the installation you'll find the path to the php.ini, add this to your path: sudo nano /etc/paths and add the following line: /usr/local/etc/php/7.3/

  3. Restart terminal