#!/usr/bin/env bash function start { php -S 0.0.0.0:9000 -t web } function test { phpunit --colors=always "${@}" } # vim: ft=bash