Skip to content

Commit 99e3fee

Browse files
committed
L12
1 parent fb801a3 commit 99e3fee

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ubuntu-latest, windows-latest]
19+
os: [ubuntu-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
@@ -23,16 +23,16 @@
2323
"illuminate/contracts": "^11.0||^12.0"
2424
},
2525
"require-dev": {
26-
"laravel/pint": "^1.0",
27-
"nunomaduro/collision": "^8.1",
28-
"larastan/larastan": "^3.0.0",
29-
"orchestra/testbench": "^9.0",
26+
"laravel/pint": "^1.14",
27+
"nunomaduro/collision": "^8.1.1||^7.10.0",
28+
"larastan/larastan": "^2.9||^3.0",
29+
"orchestra/testbench": "^10.0.0||^9.0.0||^8.22.0",
3030
"pestphp/pest": "^3.0",
3131
"pestphp/pest-plugin-arch": "^3.0",
3232
"pestphp/pest-plugin-laravel": "^3.0",
33-
"phpstan/extension-installer": "^1.4",
34-
"phpstan/phpstan-deprecation-rules": "^2.0",
35-
"phpstan/phpstan-phpunit": "^2.0"
33+
"phpstan/extension-installer": "^1.3||^2.0",
34+
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
35+
"phpstan/phpstan-phpunit": "^1.3||^2.0"
3636
},
3737
"autoload": {
3838
"files": [

0 commit comments

Comments
 (0)