Skip to content

Commit d5efa21

Browse files
committed
v2.1.0
1 parent b076276 commit d5efa21

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Unreleased
1111

12+
## v2.1.0
13+
1214
### Added
1315

14-
- Support Laravel 11
16+
- Support Laravel 11 https://github.com/laragraph/utils/pull/16
1517

1618
## v2.0.3
1719

Makefile

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
.PHONY: it
22
it: fix stan test ## Runs all common targets
33

4+
.PHONY: help
5+
help: ## Displays this list of targets with descriptions
6+
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
7+
8+
.PHONY: setup
9+
setup: vendor ## Set up the project
10+
411
.PHONY: coverage
512
coverage: vendor ## Collects coverage from running unit tests with phpunit
613
vendor/bin/phpunit --coverage-text
@@ -10,10 +17,6 @@ fix: vendor ## Fix the codestyle
1017
composer normalize
1118
vendor/bin/php-cs-fixer fix
1219

13-
.PHONY: help
14-
help: ## Displays this list of targets with descriptions
15-
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
16-
1720
.PHONY: stan
1821
stan: vendor ## Runs a static analysis with phpstan
1922
vendor/bin/phpstan analyse

0 commit comments

Comments
 (0)