Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ DOCKER_HOST := docker run --rm --network host -v "$(PWD)":/app -w /app
PCOV_BOOTSTRAP := apk add --no-cache $$PHPIZE_DEPS >/dev/null && pecl install pcov >/dev/null && docker-php-ext-enable pcov

.PHONY: build cs cs-fix psalm test mutation rector rector-fix install normalize require-checker \
test-coverage test-coverage-ci update-deps release-check bc-check
test-coverage test-coverage-ci update-deps release-check bc-check audit-package

install:
$(DOCKER) composer install --no-interaction --no-progress --prefer-dist
Expand Down Expand Up @@ -80,3 +80,6 @@ help:
@echo " update-deps composer update + normalize"
@echo " bc-check check backward compatibility against latest tag"
@echo " release-check build + rector + bc-check + mutation"

audit-package:
@if [ -f ../bin/package-audit ]; then bash ../bin/package-audit "$(CURDIR)"; else echo "package-audit: available only inside the monorepo"; fi
Loading