This commit is contained in:
2022-10-23 01:39:27 +02:00
parent 8c17aab483
commit 1929b84685
4130 changed files with 479334 additions and 0 deletions

21
vendor/ringcentral/psr7/Makefile vendored Executable file
View File

@@ -0,0 +1,21 @@
all: clean test
test:
vendor/bin/phpunit $(TEST)
coverage:
vendor/bin/phpunit --coverage-html=artifacts/coverage $(TEST)
view-coverage:
open artifacts/coverage/index.html
clean:
rm -rf artifacts/*
.PHONY: docker-login
docker-login:
docker run -t -i -v $(shell pwd):/opt/psr7 ringcentral-psr7 /bin/bash
.PHONY: docker-build
docker-build:
docker build -t ringcentral-psr7 .