Skip to content

Commit

Permalink
Supports Laravel 12 (#1157)
Browse files Browse the repository at this point in the history
* Allows 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 7d4d414 commit 28c9fce
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/browser-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,20 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10, 11, 12]
phpunit: [10.5, 11]
include:
- php: 8.4
laravel: 11
phpunit: 11.3
exclude:
- php: 8.1
laravel: 11
- php: 8.1
laravel: 12
- laravel: 10
phpunit: 11
- laravel: 10
phpunit: 12
- laravel: 12
phpunit: 10.5

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

Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,20 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
php: [8.1, 8.2, 8.3, 8.4]
laravel: [10, 11, 12]
phpunit: [10.5, 11]
include:
- php: 8.4
laravel: 11
phpunit: 11.3
exclude:
- php: 8.1
laravel: 11
- php: 8.1
laravel: 12
- laravel: 10
phpunit: 11
- laravel: 10
phpunit: 12
- laravel: 12
phpunit: 10.5

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"ext-json": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.5",
"illuminate/console": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"php-webdriver/webdriver": "^1.15.2",
"symfony/console": "^6.2|^7.0",
"symfony/finder": "^6.2|^7.0",
Expand All @@ -28,7 +28,7 @@
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.19|^9.0",
"orchestra/testbench": "^8.19|^9.0|^10.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1|^11.0",
"psy/psysh": "^0.11.12|^0.12"
Expand Down

0 comments on commit 28c9fce

Please sign in to comment.