From d5efa214024d9afb65cca72eb6dfac32e459d660 Mon Sep 17 00:00:00 2001 From: spawnia Date: Sun, 18 Feb 2024 11:24:29 +0100 Subject: [PATCH] v2.1.0 --- CHANGELOG.md | 4 +++- Makefile | 11 +++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3446094..12d2a68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## v2.1.0 + ### Added -- Support Laravel 11 +- Support Laravel 11 https://github.com/laragraph/utils/pull/16 ## v2.0.3 diff --git a/Makefile b/Makefile index 45b08a0..2108f2e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,13 @@ .PHONY: it it: fix stan test ## Runs all common targets +.PHONY: help +help: ## Displays this list of targets with descriptions + @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' + +.PHONY: setup +setup: vendor ## Set up the project + .PHONY: coverage coverage: vendor ## Collects coverage from running unit tests with phpunit vendor/bin/phpunit --coverage-text @@ -10,10 +17,6 @@ fix: vendor ## Fix the codestyle composer normalize vendor/bin/php-cs-fixer fix -.PHONY: help -help: ## Displays this list of targets with descriptions - @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' - .PHONY: stan stan: vendor ## Runs a static analysis with phpstan vendor/bin/phpstan analyse