Skip to content

Commit 9a73506

Browse files
authoredOct 30, 2021
Merge pull request #17 from MacFJA/abstraction
Remove hard dependency on Predis + allow other Redis lib
2 parents 79b7281 + 81c1d7f commit 9a73506

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3255
-443
lines changed
 

‎.unused.dist.php

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
'enlightn/security-checker', // QA tool
2929
'php-parallel-lint/php-parallel-lint', // QA tool
3030
'sebastian/phpcpd', // QA tool
31+
'ukko/phpredis-phpdoc' // Stubs
3132
],
3233
'excludeDirectories' => [],
3334
'scanFiles' => [],

‎Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: analyze fix-code test coverage mutation-test validation
1+
.PHONY: analyze fix-code test coverage validation integration-test
22

33
analyze: | vendor
44
$(COMPOSER) exec -v parallel-lint -- src
@@ -22,7 +22,10 @@ coverage: | vendor
2222
@if [ -z "`php -v | grep -i 'xdebug'`" ]; then echo "You need to install Xdebug in order to do this action"; exit 1; fi
2323
$(COMPOSER) exec -v phpunit -- --coverage-text --color
2424

25-
validation: fix-code analyze test coverage
25+
integration-test: | vendor
26+
$(COMPOSER) exec -v phpunit -- --group integration
27+
28+
validation: fix-code analyze test coverage integration-test
2629

2730
vendor: composer.json
2831
$(COMPOSER) install --optimize-autoloader --no-suggest --prefer-dist

0 commit comments

Comments
 (0)
Please sign in to comment.