Skip to content

Commit cd2381b

Browse files
authored
Merge pull request #10 from jay-youngn/laravel-11.x
deps: support laravel 11.x
2 parents bbd3675 + d2937b6 commit cd2381b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "ginnerpeace/laravel-redis-lock",
3-
"homepage": "https://github.com/ginnerpeace/laravel-redis-lock",
3+
"homepage": "https://github.com/jay-youngn/laravel-redis-lock",
44
"description": "Simple redis distributed locks for Laravel.",
55
"keywords": ["redis", "mutex lock", "laravel", "lumen"],
66
"license": "MIT",
77
"authors": [
88
{
9-
"name": "ginnerpeace",
9+
"name": "JayYoungn",
1010
"email": "[email protected]"
1111
}
1212
],
1313
"require": {
1414
"php": "^7.0|^8.0",
15-
"illuminate/redis": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
16-
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
15+
"illuminate/redis": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
16+
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
1717
"predis/predis": "^1.1 || ^2.0"
1818
},
1919
"autoload": {

src/Processor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Simple redis mutex lock.
1010
*
1111
* @author gjy <[email protected]>
12-
* @link https://github.com/ginnerpeace/laravel-redis-lock
12+
* @link https://github.com/jay-youngn/laravel-redis-lock
1313
*/
1414
class Processor
1515
{

0 commit comments

Comments
 (0)