Skip to content

Commit 58d1747

Browse files
committedFeb 26, 2025
Updated composer dependencies
1 parent 4737355 commit 58d1747

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed
 

‎.github/workflows/test-code.yml

+3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,15 @@ jobs:
2323
laravel:
2424
- '10.0'
2525
- '11.0'
26+
- '12.0'
2627

2728
include:
2829
- laravel: '10.0'
2930
testbench: '8.0'
3031
- laravel: '11.0'
3132
testbench: '9.0'
33+
- laravel: '12.0'
34+
testbench: '10.0'
3235
- php: 8.3
3336
laravel: '11.0'
3437
stable: true

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
Thumbs.db
77
.php-cs-fixer.cache
88
/composer.lock
9+
/auth.json
10+
/report-junit.xml
11+
/.env

‎composer.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@
1515
"ext-json": "*",
1616
"codex-team/editor.js": "*",
1717
"guzzlehttp/guzzle": "^7.0",
18-
"illuminate/support": "^10.0 || ^11.0",
19-
"illuminate/events": "^10.0 || ^11.0",
20-
"laravel/nova": "^4.0",
18+
"illuminate/events": "^10.0 || ^11.0 || ^12.0",
19+
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
20+
"laravel/laravel": "^12",
21+
"laravel/nova": "^4.0 || ^5.0",
2122
"spatie/image": "^3.0"
2223
},
2324
"require-dev": {
2425
"laravel/pint": "^1.15",
25-
"orchestra/testbench": "^8.0 || ^9.0",
26+
"orchestra/testbench": "^10",
2627
"php-parallel-lint/php-parallel-lint": "^1.3"
2728
},
2829
"autoload": {
@@ -66,8 +67,8 @@
6667
"prefer-stable": true,
6768
"repositories": [
6869
{
69-
"type": "composer",
70-
"url": "https://nova.laravel.com"
70+
"type": "path",
71+
"url": "./tests/Fixtures/nova"
7172
}
7273
]
7374
}

‎tests/Feature/Views/ViewTestHelpers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
trait ViewTestHelpers
1111
{
12-
protected function view(string $view, array $args = []): TestView
12+
protected function view(string $view, $args = []): TestView
1313
{
1414
return new TestView(View::make($view, $args));
1515
}

0 commit comments

Comments
 (0)