Skip to content

Commit b65355a

Browse files
Fix and review packages
1 parent ed08932 commit b65355a

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
stability: [prefer-stable]
1818
include:
1919
- laravel: 12.*
20-
testbench: 9.*
20+
testbench: 10.*
2121

2222
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2323

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"type": "library",
55
"require": {
66
"php": "^8.3",
7-
"illuminate/console": "^11.0|^12.0",
8-
"illuminate/support": "^11.0|^12.0",
9-
"illuminate/filesystem": "^11.0|^12.0"
7+
"illuminate/console": "^12.0",
8+
"illuminate/support": "^12.0",
9+
"illuminate/filesystem": "^12.0"
1010
},
1111
"require-dev": {
1212
"laravel/pint": "^1.13",
13-
"orchestra/testbench": "^9.0",
13+
"orchestra/testbench": "^10.0",
1414
"pestphp/pest": "^3.0",
1515
"pestphp/pest-plugin-laravel": "^3.0",
16-
"larastan/larastan": "^2.9",
16+
"larastan/larastan": "^3.4.0",
1717
"mockery/mockery": "^1.6"
1818
},
1919
"license": "MIT",

phpstan.neon

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ includes:
22
- vendor/larastan/larastan/extension.neon
33

44
parameters:
5+
level: 6
56
paths:
67
- src
78

8-
level: 6
9-
109
ignoreErrors:
10+
- '#Unsafe usage of new static#'
1111
- '#PHPDoc tag @param references unknown parameter#'
1212
- '#Part .* of encapsed string cannot be cast to string#'
1313
- '#Parameter .* expects string, array\|bool\|string\|null given#'
@@ -17,6 +17,5 @@ parameters:
1717

1818
excludePaths:
1919
- vendor
20-
- bootstrap/cache
2120

2221
reportUnmatchedIgnoredErrors: false

0 commit comments

Comments
 (0)