Skip to content

Commit b6ce65e

Browse files
committed
Fixes
1 parent 3d73436 commit b6ce65e

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ 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: Install composer dependencies
2323
uses: ramsey/composer-install@v3
2424

2525
- name: Install larastan
2626
run: |
27-
composer require "nunomaduro/larastan" --no-interaction --no-update
27+
composer require "larastan/larastan" --no-interaction --no-update
2828
composer update --prefer-dist --no-interaction
2929
3030
- name: Run PHPStan

phpstan-baseline.neon

Lines changed: 0 additions & 2 deletions
This file was deleted.

phpstan.neon.dist

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
includes:
2-
- phpstan-baseline.neon
3-
- ./vendor/nunomaduro/larastan/extension.neon
2+
- ./vendor/larastan/larastan/extension.neon
43

54
parameters:
65
level: 8
76
paths:
87
- src/
98
- config/
10-
- database/migrations/audits.stub
9+
- database/
1110
- stubs/
1211
tmpDir: build/phpstan
1312
ignoreErrors:

0 commit comments

Comments
 (0)