Skip to content

Commit

Permalink
Updated dependencies. Added PHPStan analysis. Cleaned up code.
Browse files Browse the repository at this point in the history
  • Loading branch information
MSnoeren committed Nov 7, 2024
1 parent 40eab83 commit a4f2ab7
Show file tree
Hide file tree
Showing 6 changed files with 1,481 additions and 1,001 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ jobs:

- name: Run test suite
run: vendor/bin/phpunit ./tests --coverage-text

- name: Run PHPStan
run: vendor/bin/phpstan
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/guzzle": "^7.9.2",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^v9.0.1",
"phpunit/phpunit": "^11.0.8",
"larastan/larastan": "^2.9",
"orchestra/testbench": "v9.5.2",
"phpunit/phpunit": "^11.4.3",
"spatie/macroable": "^2.0.0"
},
"autoload": {
Expand All @@ -38,7 +39,7 @@
}
},
"scripts": {
"test": "vendor/bin/phpunit ./tests"
"test": "vendor/bin/phpunit ./tests && vendor/bin/phpstan"
},
"config": {
"sort-packages": true
Expand Down
Loading

0 comments on commit a4f2ab7

Please sign in to comment.