Skip to content

Commit c018567

Browse files
committed
Support Laravel 5.8
1 parent ad7c403 commit c018567

File tree

5 files changed

+14
-3817
lines changed

5 files changed

+14
-3817
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
vendor
1+
/vendor
2+
.phpunit.result.cache
3+
composer.lock

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Mutex for Laravel console commands.
2222
| 5.5.* | [5.5.*](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/5.5) |
2323
| 5.6.* | [5.6.*](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/5.6) |
2424
| 5.7.* | [5.7.*](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/5.7) |
25+
| 5.8.* | [5.8.*](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/5.8) |
2526

2627
![Example](doc/img/example.gif)
2728

composer.json

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,21 @@
33
"description": "Mutex for Laravel console commands.",
44
"keywords": ["laravel", "console", "command", "mutex", "overlapping", "locker"],
55
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Dmitry Ivanov",
9-
"email": "[email protected]"
10-
}
11-
],
6+
"authors": [{
7+
"name": "Dmitry Ivanov",
8+
"email": "[email protected]"
9+
}],
1210
"require": {
1311
"php": "^7.1.3",
14-
"illuminate/support": "5.7.*",
15-
"illuminate/console": "5.7.*",
12+
"illuminate/support": "5.8.*",
13+
"illuminate/console": "5.8.*",
1614
"arvenil/ninja-mutex": "^0.6"
1715
},
1816
"require-dev": {
19-
"phpunit/phpunit": "^7.0",
17+
"phpunit/phpunit": "^7.5|^8.0",
2018
"mockery/mockery": "^1.0",
21-
"orchestra/testbench": "3.7.*",
22-
"illuminated/testing-tools": "5.7.*",
19+
"orchestra/testbench": "3.8.*",
20+
"illuminated/testing-tools": "5.8.*",
2321
"predis/predis": "^1.1.1",
2422
"ext-pdo_mysql": "*",
2523
"ext-redis": "*"

0 commit comments

Comments
 (0)