1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-12 03:24:26 +01:00

Fixed Makefile (#2695)

This commit is contained in:
Graham Campbell 2020-06-16 10:10:25 +01:00 committed by GitHub
parent 818faffe2d
commit 48f2fb7ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,11 @@ help:
@echo " docs to build the Sphinx docs" @echo " docs to build the Sphinx docs"
@echo " docs-show to view the Sphinx docs" @echo " docs-show to view the Sphinx docs"
@echo " tag to modify the version, update changelog, and chag tag" @echo " tag to modify the version, update changelog, and chag tag"
@echo " package to build the phar and zip files" @echo " static to run phpstan and php-cs-fixer on the codebase"
@echo " static-phpstan to run phpstan on the codebase"
@echo " static-phpstan-update-baseline to regenerate the phpstan baseline file"
@echo " static-codestyle-fix to run php-cs-fixer on the codebase, writing the changes"
@echo " static-codestyle-check to run php-cs-fixer on the codebase"
start-server: stop-server start-server: stop-server
node tests/server.js &> /dev/null & node tests/server.js &> /dev/null &
@ -59,9 +63,6 @@ tag:
git commit -m '$(TAG) release' git commit -m '$(TAG) release'
chag tag chag tag
package:
php build/packager.php
static: static-phpstan static-codestyle-check static: static-phpstan static-codestyle-check
static-phpstan: static-phpstan:
@ -76,4 +77,4 @@ static-codestyle-fix:
static-codestyle-check: static-codestyle-check:
$(MAKE) static-codestyle-fix CS_PARAMS="--dry-run" $(MAKE) static-codestyle-fix CS_PARAMS="--dry-run"
.PHONY: docs burgomaster coverage-show view-coverage .PHONY: docs coverage-show view-coverage