Skip to content

Commit 1af0c62

Browse files
committed
Update composer.json
1 parent c35edc3 commit 1af0c62

2 files changed

Lines changed: 22 additions & 16 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,31 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
include:
16-
- php: 8.1
17-
laravel: 10.*
18-
filament: 4.*
19-
testbench: 8.*
2016
- php: 8.2
2117
laravel: 11.*
2218
filament: 4.*
2319
testbench: 9.*
20+
livewire: ^3.0
2421
- php: 8.2
2522
laravel: 12.*
26-
filament: 5.*
23+
filament: 4.*
2724
testbench: 10.*
25+
livewire: ^3.0
2826
- php: 8.3
2927
laravel: 12.*
3028
filament: 5.*
3129
testbench: 10.*
30+
livewire: ^4.0
3231
- php: 8.4
3332
laravel: 12.*
3433
filament: 5.*
3534
testbench: 10.*
35+
livewire: ^4.0
3636
- php: 8.5
3737
laravel: 12.*
3838
filament: 5.*
3939
testbench: 10.*
40+
livewire: ^4.0
4041

4142
name: P${{ matrix.php }} - L${{ matrix.laravel }}
4243

@@ -69,7 +70,12 @@ jobs:
6970
7071
- name: Install dependencies
7172
run: |
72-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "filament/filament:${{ matrix.filament }}" --no-interaction --no-update --no-progress --ansi
73+
composer require \
74+
"laravel/framework:${{ matrix.laravel }}" \
75+
"orchestra/testbench:${{ matrix.testbench }}" \
76+
"filament/filament:${{ matrix.filament }}" \
77+
"livewire/livewire:${{ matrix.livewire }}" \
78+
--no-interaction --no-update --no-progress --ansi
7379
composer update --prefer-stable --prefer-dist --no-interaction --no-progress --ansi
7480
7581
- name: Execute tests

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.1",
23+
"php": "^8.2",
2424
"filament/filament": "^4.0 || ^5.0",
2525
"filament/notifications": "^4.0 || ^5.0",
2626
"spatie/laravel-package-tools": "^1.15",
2727
"illuminate/contracts": "^11.0 || ^12.0"
2828
},
2929
"require-dev": {
30-
"larastan/larastan": "^2.0 || ^3.0",
30+
"larastan/larastan": "^3.0",
3131
"laravel/pint": "^1.0",
32-
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
33-
"pestphp/pest": "^2.0 || ^3.7 || ^4.0",
34-
"pestphp/pest-plugin-arch": "^2.0 || ^3.0 || ^4.0",
35-
"pestphp/pest-plugin-laravel": "^2.0 || ^3.1 || ^4.0",
36-
"pestphp/pest-plugin-livewire": "^3.0 || ^4.0",
37-
"phpstan/extension-installer": "^1.1",
38-
"phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
39-
"phpstan/phpstan-phpunit": "^1.0 || ^2.0"
32+
"orchestra/testbench": "*",
33+
"pestphp/pest": "^3.7 || ^4.0",
34+
"pestphp/pest-plugin-arch": "*",
35+
"pestphp/pest-plugin-laravel": "*",
36+
"pestphp/pest-plugin-livewire": "*",
37+
"phpstan/extension-installer": "*",
38+
"phpstan/phpstan-deprecation-rules": "*",
39+
"phpstan/phpstan-phpunit": "*"
4040
},
4141
"autoload": {
4242
"psr-4": {

0 commit comments

Comments
 (0)