Skip to content

Commit f79caac

Browse files
committed
up
1 parent be65cfc commit f79caac

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
matrix:
1919
os: [ubuntu-latest, windows-latest]
2020
php: [8.4, 8.3]
21-
laravel: [11.*]
21+
laravel: [12.*, 11.*]
2222
stability: [prefer-stable]
23+
include:
24+
- laravel: 12.*
25+
testbench: 10.*
26+
- laravel: 11.*
27+
testbench: 9.*
2328

2429
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2530

@@ -41,7 +46,7 @@ jobs:
4146
4247
- name: Install dependencies
4348
run: |
44-
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
49+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
4550
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4651
4752
- name: List Installed Dependencies

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"illuminate/contracts": "^11.0||^12.0"
2222
},
2323
"require-dev": {
24-
"laravel/pint": "^1.0",
25-
"nunomaduro/collision": "^8.1",
26-
"larastan/larastan": "^3.0.0",
27-
"orchestra/testbench": "^9.0",
24+
"laravel/pint": "^1.14",
25+
"nunomaduro/collision": "^8.1.1",
26+
"larastan/larastan": "^2.9||^3.0",
27+
"orchestra/testbench": "^10.0.0||^9.0.0",
2828
"pestphp/pest": "^3.0",
2929
"pestphp/pest-plugin-arch": "^3.0",
3030
"pestphp/pest-plugin-laravel": "^3.0",
31-
"phpstan/extension-installer": "^1.4",
32-
"phpstan/phpstan-deprecation-rules": "^2.0",
33-
"phpstan/phpstan-phpunit": "^2.0"
31+
"phpstan/extension-installer": "^1.3||^2.0",
32+
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
33+
"phpstan/phpstan-phpunit": "^1.3||^2.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)