We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35c0bd commit ad18b8eCopy full SHA for ad18b8e
Makefile
@@ -0,0 +1,21 @@
1
+.PHONY: help
2
+.DEFAULT_GOAL := help
3
+
4
+$(VERBOSE).SILENT:
5
6
+help:
7
+ grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
8
+ cut -d: -f2- | \
9
+ sort -d | \
10
+ awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'
11
12
+.PHONY: composer-install composer-update release
13
14
+composer-install:
15
+ docker run --rm --interactive --tty --volume $(PWD):/app --user $(id -u):$(id -g) composer install --ignore-platform-reqs
16
17
+composer-update:
18
+ docker run --rm --interactive --tty --volume $(PWD):/app --user $(id -u):$(id -g) composer update --ignore-platform-reqs
19
20
+release:
21
+ ./vendor/bin/releaser release
0 commit comments