Skip to content

Commit 9122c6d

Browse files
committed
Update dependencies
1 parent 7aa0ec8 commit 9122c6d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/format_php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
2626
with:
27-
php-version: 8.2
27+
php-version: 8.4
2828
coverage: none
2929
tools: cs2pr
3030
env:

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.3'
19+
php-version: '8.4'
2020
coverage: none
2121

2222
- name: Cache composer dependencies

.github/workflows/run-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [ 8.3, 8.2 ]
12-
laravel: [ 10.* ]
11+
php: [ 8.4, 8.3, 8.2, 8.1 ]
12+
laravel: [ 10.*, 11.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
15-
- laravel: 10.*
16-
testbench: 8.*
15+
- laravel: 11.*
16+
testbench: 9.*
1717

1818
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
1919

@@ -35,7 +35,7 @@ jobs:
3535
- name: Install dependencies
3636
run: |
3737
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_4_LICENSE_KEY }}"
38-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
38+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench-core:${{ matrix.testbench }}" --no-interaction --no-update
3939
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
4040
env:
4141
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
@@ -54,14 +54,14 @@ jobs:
5454
- name: Setup Node.js
5555
uses: actions/setup-node@v4
5656
with:
57-
node-version: 20
57+
node-version: 22
5858

5959
- name: Cache yarn dependencies
6060
uses: actions/cache@v4
6161
id: npm-node_modules-cache
6262
with:
6363
path: node_modules
64-
key: npm-${{ hashFiles('package.json') }}-node-20
64+
key: npm-${{ hashFiles('package.json') }}-node-22
6565

6666
- name: Compile assets
6767
run: npm install && npm run prod

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
],
1313
"require": {
1414
"php": "^8.1",
15-
"laravel/nova": "^4.20"
15+
"laravel/nova": "^4.20 || ^5.0"
1616
},
1717
"require-dev": {
1818
"interaction-design-foundation/coding-standard": "^0.3.0",
19-
"orchestra/testbench": "^8.3",
20-
"phpunit/phpunit": "^10.5 || ^11.0",
19+
"testbench-core": "^9.7",
20+
"phpunit/phpunit": "^11.0",
2121
"vimeo/psalm": "^5.22"
2222
},
2323
"repositories": [

0 commit comments

Comments
 (0)