Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spawnia committed Feb 18, 2024
1 parent b076276 commit d5efa21
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit d5efa21

Please sign in to comment.