Skip to content

Commit 53b576b

Browse files
authored
Supports Laravel 12 (#184)
* Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com> * wip Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com> --------- Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
1 parent 0f12527 commit 53b576b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ jobs:
1919
matrix:
2020
php: [8.2, 8.3, 8.4]
2121
phpunit: [10, 11]
22-
laravel: [10, 11]
22+
laravel: [10, 11, 12]
2323
exclude:
2424
- php: 8.4
2525
laravel: 10
2626
- phpunit: 11
2727
laravel: 10
28+
- phpunit: 10
29+
laravel: 12
2830

2931
name: PHP ${{ matrix.php }} - PHPUnit ${{ matrix.phpunit }} - Laravel ${{ matrix.laravel }}
3032

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": "^8.2",
1414
"ext-dom": "*",
15-
"laravel/framework": "^10.44|^11.0",
15+
"laravel/framework": "^10.44|^11.0|^12.0",
1616
"mockery/mockery": "^1.0",
1717
"phpunit/phpunit": "^10.4|^11.0.1",
1818
"symfony/console": "^6.2|^7.0",
@@ -23,7 +23,7 @@
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.17",
26-
"orchestra/testbench-core": "^8.21|^9.0"
26+
"orchestra/testbench-core": "^8.31|^9.8|^10.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

tests/Feature/ParallelTestingTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Laravel\BrowserKitTesting\TestCase;
88
use Laravel\BrowserKitTesting\Tests\CreatesApplication;
99
use Orchestra\Testbench\Foundation\Env;
10-
use Orchestra\Testbench\Foundation\UndefinedValue;
10+
use Orchestra\Testbench\Support\UndefinedValue;
1111

1212
class ParallelTestingTest extends TestCase
1313
{

0 commit comments

Comments
 (0)