Vendor lock

This commit is contained in:
2023-06-16 02:08:47 +00:00
parent 7933e70e90
commit 3351b92dd6
4099 changed files with 345789 additions and 0 deletions

31
vendor/zeuxisoo/slim-whoops/Makefile vendored Normal file
View File

@ -0,0 +1,31 @@
.PHONY: examples tests
all:
@echo
@echo "Command : Description"
@echo "------------- : ---------------------"
@echo "make composer : Download the composer tools"
@echo "make install : Install the development vendors and assets by composer"
@echo "make examples : Run the examples"
@echo "make tests : Run the test cases"
@echo "make coverage : Get the test coverage"
@echo "make clean : Clean the files"
@echo
composer:
@curl -sS https://getcomposer.org/installer | php
install:
@php composer.phar install
examples:
@php -S localhost:8080 -t examples
tests:
@php ./vendor/bin/phpunit
coverage:
@php ./vendor/bin/phpunit --coverage-html ./report tests
clean:
@rm -rf ./report