Skip to content

Commit

Permalink
Add Makefile for HACKING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
moririnson committed May 30, 2023
1 parent 0ea7ef3 commit f90783e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.PHONY: default test doc phpcs phpmd check install-devtool copyright release clean install reinstall

default: check

test:
composer test

doc:
composer doc

phpcs:
composer cs

phpmd:
composer md

phpstan:
composer stan

copyright:
tools/check_copyright.sh

check: test copyright phpcs phpmd phpstan

clean:
rm -rf vendor composer.lock

install:
composer install

reinstall: clean install

0 comments on commit f90783e

Please sign in to comment.