Skip to content

Commit c5b2d74

Browse files
committed
Release/2.3.0 (#44)
1 parent 9e810a8 commit c5b2d74

12 files changed

Lines changed: 471 additions & 356 deletions

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ review: ## Run static code analysis
3838
show-reports: ## Open static analysis reports (e.g., coverage, lints) in the browser
3939
@sensible-browser report/coverage/coverage-html/index.html report/coverage/mutation-report.html
4040

41+
.PHONY: show-outdated
42+
show-outdated: ## Show outdated direct dependencies
43+
@${DOCKER_RUN} composer outdated --direct
44+
4145
.PHONY: clean
4246
clean: ## Remove dependencies and generated artifacts
4347
@sudo chown -R ${USER}:${USER} ${PWD}
@@ -60,7 +64,7 @@ help: ## Display this help message
6064
| awk 'BEGIN {FS = ":.*?## "}; {printf "$(YELLOW)%-25s$(RESET) %s\n", $$1, $$2}'
6165
@echo ""
6266
@echo "$$(printf '$(GREEN)')Reports$$(printf '$(RESET)')"
63-
@grep -E '^(show-reports):.*?## .*$$' $(MAKEFILE_LIST) \
67+
@grep -E '^(show-reports|show-outdated):.*?## .*$$' $(MAKEFILE_LIST) \
6468
| awk 'BEGIN {FS = ":.*?## "}; {printf "$(YELLOW)%-25s$(RESET) %s\n", $$1, $$2}'
6569
@echo ""
6670
@echo "$$(printf '$(GREEN)')Cleanup$$(printf '$(RESET)')"

0 commit comments

Comments
 (0)