We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c54e90 commit 8a2a86aCopy full SHA for 8a2a86a
.github/workflows/phpstan.yml
@@ -5,6 +5,7 @@ on:
5
paths:
6
- '**.php'
7
- 'phpstan.neon.dist'
8
+ workflow_dispatch:
9
10
jobs:
11
phpstan:
@@ -21,6 +22,18 @@ jobs:
21
22
23
- name: Install composer dependencies
24
uses: ramsey/composer-install@v3
25
+ with:
26
+ dependency-versions: highest
27
+ composer-options: --ignore-platform-reqs
28
+
29
+ - name: Require Laravel 11
30
+ run: composer require laravel/framework:^11.0 --no-update
31
32
+ - name: Install composer dependencies
33
+ uses: ramsey/composer-install@v3
34
35
36
+ composer-options: --no-dev
37
38
- name: Run PHPStan
39
run: ./vendor/bin/phpstan --error-format=github
0 commit comments