FEATURE: PhpRedisLock implementing the LockExpirationInterface
... | ... | @@ -25,6 +25,11 @@ |
"issues": "https://git.higidi.com/higidi/ninja-mutex/issues", | ||
"source": "https://git.higidi.com/higidi/ninja-mutex" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Higidi\\NinjaMutex\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Higidi\\NinjaMutex\\Tests\\": "tests/" | ||
... | ... | @@ -36,6 +41,7 @@ |
}, | ||
"require-dev": { | ||
"squizlabs/php_codesniffer": "^2.9||^3.0", | ||
"phpunit/phpunit": "^4.5||^5.0.5" | ||
"phpunit/phpunit": "^4.5||^5.0.5", | ||
"ext-redis": "*" | ||
} | ||
} |
src/Lock/PhpRedisLock.php
0 → 100644
Please register or sign in to comment