Skip to content

Instantly share code, notes, and snippets.

@jamesmills
Created May 6, 2019 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmills/f9670c2d47afb1c8810323f2b9131eea to your computer and use it in GitHub Desktop.
Save jamesmills/f9670c2d47afb1c8810323f2b9131eea to your computer and use it in GitHub Desktop.
THIS := $(realpath $(lastword $(MAKEFILE_LIST)))
HERE := $(shell dirname $(THIS))
.PHONY: fix lint test
fix:
$(HERE)/vendor/bin/php-cs-fixer fix --config=$(HERE)/.php_cs
lint:
$(HERE)/vendor/bin/php-cs-fixer fix --config=$(HERE)/.php_cs --dry-run
test: lint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment