Skip to content

Commit

Permalink
Merge pull request #10 from jay-youngn/laravel-11.x
Browse files Browse the repository at this point in the history
deps: support laravel 11.x
  • Loading branch information
jay-youngn authored Nov 18, 2024
2 parents bbd3675 + d2937b6 commit cd2381b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "ginnerpeace/laravel-redis-lock",
"homepage": "https://github.com/ginnerpeace/laravel-redis-lock",
"homepage": "https://github.com/jay-youngn/laravel-redis-lock",
"description": "Simple redis distributed locks for Laravel.",
"keywords": ["redis", "mutex lock", "laravel", "lumen"],
"license": "MIT",
"authors": [
{
"name": "ginnerpeace",
"name": "JayYoungn",
"email": "ginnerpeace@gmail.com"
}
],
"require": {
"php": "^7.0|^8.0",
"illuminate/redis": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/redis": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"predis/predis": "^1.1 || ^2.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Simple redis mutex lock.
*
* @author gjy <ginnerpeace@live.com>
* @link https://github.com/ginnerpeace/laravel-redis-lock
* @link https://github.com/jay-youngn/laravel-redis-lock
*/
class Processor
{
Expand Down

0 comments on commit cd2381b

Please sign in to comment.