File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## Unreleased
11
11
12
+ ## v2.1.0
13
+
12
14
### Added
13
15
14
- - Support Laravel 11
16
+ - Support Laravel 11 https://github.com/laragraph/utils/pull/16
15
17
16
18
## v2.0.3
17
19
Original file line number Diff line number Diff line change 1
1
.PHONY : it
2
2
it : fix stan test # # Runs all common targets
3
3
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
+
4
11
.PHONY : coverage
5
12
coverage : vendor # # Collects coverage from running unit tests with phpunit
6
13
vendor/bin/phpunit --coverage-text
@@ -10,10 +17,6 @@ fix: vendor ## Fix the codestyle
10
17
composer normalize
11
18
vendor/bin/php-cs-fixer fix
12
19
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
-
17
20
.PHONY : stan
18
21
stan : vendor # # Runs a static analysis with phpstan
19
22
vendor/bin/phpstan analyse
You can’t perform that action at this time.
0 commit comments