first commit

This commit is contained in:
2026-01-25 18:18:09 +08:00
commit 509312e604
8136 changed files with 2349298 additions and 0 deletions

49
vendor/yiisoft/yii2-redis/Makefile vendored Normal file
View File

@ -0,0 +1,49 @@
# default versions to test against
# these can be overridden by setting the environment variables in the shell
REDIS_VERSION=3.0.0
PHP_VERSION=php-5.6.8
YII_VERSION=dev-master
# ensure all the configuration variables above are in environment of the shell commands below
export
help:
@echo "make test - run phpunit tests using a docker environment"
@echo "make clean - stop docker and remove container"
test: docker adjust-config
#composer require "yiisoft/yii2:${YII_VERSION}" --prefer-dist
#composer install --prefer-dist
docker run --rm=true -v $(shell pwd):/opt/test --link $(shell cat tests/dockerids/redis):redis yiitest/php:${PHP_VERSION} phpunit --verbose --color
adjust-config:
echo "<?php \$$config['databases']['redis']['port'] = 6379; \$$config['databases']['redis']['hostname'] = 'redis';" > tests/data/config.local.php
docker: build-docker
docker run -d -P yiitest/redis:${REDIS_VERSION} > tests/dockerids/redis
build-docker:
test -d tests/docker || git clone https://github.com/cebe/jenkins-test-docker tests/docker
cd tests/docker && git checkout -- . && git pull
cd tests/docker/php && sh build.sh
cd tests/docker/redis && sh build.sh
mkdir -p tests/dockerids
clean:
docker stop $(shell cat tests/dockerids/redis)
docker rm $(shell cat tests/dockerids/redis)
rm tests/dockerids/redis
test-sentinel:
make build
PHP_VERSION=$(filter-out $@,$(MAKECMDGOALS)) docker compose -f tests/docker/docker-compose.yml build --pull yii2-redis-php
PHP_VERSION=$(filter-out $@,$(MAKECMDGOALS)) docker compose -f tests/docker/docker-compose.yml up -d
PHP_VERSION=$(filter-out $@,$(MAKECMDGOALS)) docker compose -f tests/docker/docker-compose.yml exec yii2-redis-php sh -c "composer update && vendor/bin/phpunit --coverage-clover=coverage.clover"
build: ## Build an image from a docker-compose file. Params: {{ v=8.1 }}. Default latest PHP 8.1
PHP_VERSION=$(filter-out $@,$(v)) docker compose -f tests/docker/docker-compose.yml up -d --build
down: ## Stop and remove containers, networks
docker compose -f tests/docker/docker-compose.yml down