Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit a09aaed

Browse files
committed
Add Makefile
1 parent ae06bbf commit a09aaed

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.PHONY: all test override deps
2+
SHELL := /bin/bash
3+
4+
all: deps test
5+
6+
deps:
7+
php composer.phar install
8+
9+
test: deps
10+
./vendor/bin/phpunit
11+
12+
override:
13+
./override/override.sh

0 commit comments

Comments
 (0)