Skip to content

Commit ff2cb7a

Browse files
committed
Laravel 9 support
1 parent f5d46d5 commit ff2cb7a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [7.3, 7.4, 8.0]
11+
php: [8.0, 8.1]
1212
stability: [prefer-lowest, prefer-stable]
1313

1414
name: PHP ${{ matrix.php }} / ${{ matrix.stability }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
Mutex for Laravel Console Commands.
1717

1818
| Laravel | Console Mutex |
19-
| ------- | :----------------------------------------------------------------------: |
19+
|---------|--------------------------------------------------------------------------|
20+
| 9.x | [9.x](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/9.x) |
2021
| 8.x | [8.x](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/8.x) |
2122
| 7.x | [7.x](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/7.x) |
2223
| 6.x | [6.x](https://github.com/dmitry-ivanov/laravel-console-mutex/tree/6.x) |

composer.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,19 @@
1212
"email": "[email protected]"
1313
}],
1414
"require": {
15-
"php": "^7.3|^8.0",
16-
"ext-json": "*",
15+
"php": "^8.0.2",
1716
"arvenil/ninja-mutex": "^0.6",
18-
"illuminate/console": "^8.0",
19-
"illuminate/support": "^8.0"
17+
"illuminate/console": "^9.0",
18+
"illuminate/support": "^9.0"
2019
},
2120
"require-dev": {
22-
"phpunit/phpunit": "^8.4|^9.0",
23-
"mockery/mockery": "^1.3.2",
24-
"orchestra/testbench": "^6.0",
25-
"illuminated/testing-tools": "^8.0",
26-
"predis/predis": "^1.1.1",
21+
"ext-redis": "*",
2722
"ext-pdo_mysql": "*",
28-
"ext-redis": "*"
23+
"phpunit/phpunit": "^9.5.10",
24+
"mockery/mockery": "^1.4.4",
25+
"orchestra/testbench": "^7.0",
26+
"illuminated/testing-tools": "^9.0",
27+
"predis/predis": "^1.1.9"
2928
},
3029
"autoload": {
3130
"psr-4": {

tests/fixture/app/Console/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Illuminated\Console\Tests\App\Console\Commands\NullTimeoutCommand;
88
use Illuminated\Console\Tests\App\Console\Commands\TimeoutCommand;
99

10-
class Kernel extends \Orchestra\Testbench\Console\Kernel
10+
class Kernel extends \Orchestra\Testbench\Foundation\Console\Kernel
1111
{
1212
protected $commands = [
1313
GenericCommand::class,

0 commit comments

Comments
 (0)