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 34a57d6 commit 475718dCopy full SHA for 475718d
.github/workflows/quality-assurance.yml
@@ -0,0 +1,24 @@
1
+---
2
+name: lint
3
+on:
4
+ push:
5
+ tags-ignore:
6
+ - '**'
7
+ branches:
8
+ - master
9
+ pull_request: {}
10
+
11
+jobs:
12
13
+ composer-install:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ php-version: [8.1]
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: shivammathur/setup-php@v2
21
+ with:
22
+ php-version: ${{ matrix.php-version }}
23
+ - run: composer install
24
composer.json
@@ -19,7 +19,7 @@
"require": {
"php": "^8.1",
"phpstan/phpstan": "^1.4",
- "nunomaduro/larastan": "^2.4",
+ "larastan/larastan": "^2.8",
"spatie/laravel-data": "^3.0"
},
25
"require-dev": {
0 commit comments