12 lines
137 B
Bash
Executable file
12 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
function start {
|
|
php -S 0.0.0.0:9000 -t web
|
|
}
|
|
|
|
function test {
|
|
phpunit --colors=always "${@}"
|
|
}
|
|
|
|
# vim: ft=bash
|