初始化代码

This commit is contained in:
2025-12-22 14:34:25 +08:00
parent c2c5ae2fdd
commit a77dbc743f
1510 changed files with 213008 additions and 0 deletions

19
vendor/mtdowling/jmespath.php/Makefile vendored Normal file
View File

@@ -0,0 +1,19 @@
all: clean coverage
test:
vendor/bin/phpunit
coverage:
vendor/bin/phpunit --coverage-html=artifacts/coverage
view-coverage:
open artifacts/coverage/index.html
clean:
rm -rf artifacts/*
rm -rf compiled/*
perf:
php bin/perf.php
.PHONY: test coverage perf