diff options
Diffstat (limited to 'public/system/storage/vendor/guzzlehttp/streams/Makefile')
-rw-r--r-- | public/system/storage/vendor/guzzlehttp/streams/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/system/storage/vendor/guzzlehttp/streams/Makefile b/public/system/storage/vendor/guzzlehttp/streams/Makefile new file mode 100644 index 0000000..f4d4284 --- /dev/null +++ b/public/system/storage/vendor/guzzlehttp/streams/Makefile @@ -0,0 +1,19 @@ +all: clean coverage + +release: tag + git push origin --tags + +tag: + chag tag --sign --debug CHANGELOG.rst + +test: + vendor/bin/phpunit + +coverage: + vendor/bin/phpunit --coverage-html=artifacts/coverage + +view-coverage: + open artifacts/coverage/index.html + +clean: + rm -rf artifacts/* |