Server IP : 213.176.29.180 / Your IP : 18.190.160.50 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/whmcs/../whmcs/vendor/true/../guzzlehttp/ringphp/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
all: clean coverage docs docs: cd docs && make html view-docs: open docs/_build/html/index.html start-server: stop-server node tests/Client/server.js &> /dev/null & stop-server: @PID=$(shell ps axo pid,command \ | grep 'tests/Client/server.js' \ | grep -v grep \ | cut -f 1 -d " "\ ) && [ -n "$$PID" ] && kill $$PID || true test: start-server vendor/bin/phpunit $(TEST) $(MAKE) stop-server coverage: start-server vendor/bin/phpunit --coverage-html=build/artifacts/coverage $(TEST) $(MAKE) stop-server view-coverage: open build/artifacts/coverage/index.html clean: rm -rf build/artifacts/* cd docs && make clean tag: $(if $(TAG),,$(error TAG is not defined. Pass via "make tag TAG=4.2.1")) @echo Tagging $(TAG) chag update -m '$(TAG) ()' git add -A git commit -m '$(TAG) release' chag tag perf: start-server php tests/perf.php $(MAKE) stop-server .PHONY: docs