Skip to content

Commit

Permalink
Supports Laravel 12 (#184)
Browse files Browse the repository at this point in the history
* Supports Laravel 12

Signed-off-by: Mior Muhammad Zaki <[email protected]>

* wip

Signed-off-by: Mior Muhammad Zaki <[email protected]>

---------

Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone authored Jan 26, 2025
1 parent 0f12527 commit 53b576b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ jobs:
matrix:
php: [8.2, 8.3, 8.4]
phpunit: [10, 11]
laravel: [10, 11]
laravel: [10, 11, 12]
exclude:
- php: 8.4
laravel: 10
- phpunit: 11
laravel: 10
- phpunit: 10
laravel: 12

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": "^8.2",
"ext-dom": "*",
"laravel/framework": "^10.44|^11.0",
"laravel/framework": "^10.44|^11.0|^12.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.4|^11.0.1",
"symfony/console": "^6.2|^7.0",
Expand All @@ -23,7 +23,7 @@
},
"require-dev": {
"laravel/pint": "^1.17",
"orchestra/testbench-core": "^8.21|^9.0"
"orchestra/testbench-core": "^8.31|^9.8|^10.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/ParallelTestingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Laravel\BrowserKitTesting\TestCase;
use Laravel\BrowserKitTesting\Tests\CreatesApplication;
use Orchestra\Testbench\Foundation\Env;
use Orchestra\Testbench\Foundation\UndefinedValue;
use Orchestra\Testbench\Support\UndefinedValue;

class ParallelTestingTest extends TestCase
{
Expand Down

0 comments on commit 53b576b

Please sign in to comment.