Skip to content

Commit 961af27

Browse files
committed
Add php 8.2.
1 parent 8cd4f9f commit 961af27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [ 7.3, 7.4, 8.0, 8.1 ]
13+
php: [ 7.3, 7.4, 8.0, 8.1, 8.2 ]
1414
experimental: [ false ]
1515
include:
1616
- php: 8.1
@@ -35,7 +35,7 @@ jobs:
3535

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

4040
- name: Tests
4141
run: vendor/bin/phpunit --coverage-clover clover.xml

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
],
5252
"phpunit": "phpunit",
5353
"phpcs": "phpcs",
54-
"phpstan": "phpstan analyse src --memory-limit=-1"
54+
"phpstan": "phpstan analyse src --memory-limit=-1 --xdebug"
5555
},
5656
"config": {
5757
"sort-packages": true

0 commit comments

Comments
 (0)