Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit b25fba5

Browse files
committed
wip
1 parent f62ac65 commit b25fba5

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 8.*
23-
testbench: 6.4.*
23+
testbench: 6.*
2424

2525
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2626

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"require": {
2424
"php": "^7.4|^8.0",
2525
"ext-json": "*",
26-
"illuminate/filesystem": "^8.12",
27-
"illuminate/support": "^8.12",
28-
"illuminate/view": "^8.12"
26+
"illuminate/filesystem": "^8.0",
27+
"illuminate/support": "^8.0",
28+
"illuminate/view": "^8.0"
2929
},
3030
"require-dev": {
3131
"blade-ui-kit/blade-heroicons": "^0.3",
@@ -36,6 +36,10 @@
3636
"psalm/plugin-laravel": "^1.4",
3737
"vimeo/psalm": "^4.0"
3838
},
39+
"suggest": {
40+
"blade-ui-kit/blade-heroicons": "Required for the default icons used in this package",
41+
"livewire/livewire": "Consider livewire for handling your form submissions"
42+
},
3943
"autoload": {
4044
"psr-4": {
4145
"Rawilk\\FormComponents\\": "src"

tests/Components/ComponentTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ protected function setUp(): void
1717
{
1818
parent::setUp();
1919

20-
$this->artisan('view:clear');
20+
// $this->artisan('view:clear');
2121
}
2222

2323
protected function flashOld(array $input): void

0 commit comments

Comments
 (0)