Skip to content

Commit

Permalink
Add php 8.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
adriansuter committed Nov 9, 2022
1 parent 8cd4f9f commit 961af27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.3, 7.4, 8.0, 8.1 ]
php: [ 7.3, 7.4, 8.0, 8.1, 8.2 ]
experimental: [ false ]
include:
- php: 8.1
Expand All @@ -35,7 +35,7 @@ jobs:

- name: Static analysis
if: matrix.analysis
run: vendor/bin/phpstan analyse src
run: vendor/bin/phpstan analyse src --memory-limit=-1 --xdebug

- name: Tests
run: vendor/bin/phpunit --coverage-clover clover.xml
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1"
"phpstan": "phpstan analyse src --memory-limit=-1 --xdebug"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit 961af27

Please sign in to comment.