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