File tree Expand file tree Collapse file tree 3 files changed +29
-3
lines changed
Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Static Analysis
2+
3+ on :
4+ push :
5+ branches : ["*"]
6+ pull_request :
7+
8+ jobs :
9+ phpstan :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+ - name : Setup PHP
14+ uses : shivammathur/setup-php@v2
15+ with :
16+ php-version : ' 8.3'
17+ - name : Install dependencies
18+ run : composer install --no-interaction --no-progress
19+ - name : Run PHPStan
20+ run : vendor/bin/phpstan analyse src tests
Original file line number Diff line number Diff line change 2727 "ext-json" : " *"
2828 },
2929 "require-dev" : {
30- "phpunit/phpunit" : " ^9.3|^10.5" ,
31- "mockery/mockery" : " ^1.0" ,
3230 "laravel/pint" : " ^1.0" ,
33- "orchestra/testbench" : " ^v4.18.0|^v5.20.0|^v6.25.0|^8.0|^9.0|^10.0"
31+ "mockery/mockery" : " ^1.0" ,
32+ "orchestra/testbench" : " ^v4.18.0|^v5.20.0|^v6.25.0|^8.0|^9.0|^10.0" ,
33+ "phpstan/phpstan" : " ^1.0" ,
34+ "phpunit/phpunit" : " ^9.3|^10.5"
3435 },
3536 "autoload" : {
3637 "psr-4" : {
Original file line number Diff line number Diff line change 1+ parameters :
2+ level : 7
3+ paths :
4+ - src
5+ - tests
You can’t perform that action at this time.
0 commit comments