Skip to content

Commit 2e7948c

Browse files
committed
Add Makefile
1 parent df8f9c3 commit 2e7948c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SRC_FILES = $(shell find example src -type f -name '*.php')
2+
3+
README.md: $(SRC_FILES)
4+
vendor/bin/mddoc
5+
6+
.PHONY: fix
7+
fix:
8+
vendor/bin/php-cs-fixer fix
9+
10+
.PHONY: test
11+
test:
12+
vendor/bin/phpunit

0 commit comments

Comments
 (0)