Skip to content

Commit bc49792

Browse files
committed
chore: pin required php version to 8.2
1 parent dd58e67 commit bc49792

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
qa:
77
strategy:
88
matrix:
9-
version: [ '8.2', '8.3', '8.4' ]
9+
version: [ '8.2', '8.3', 'latest' ]
1010
name: QA
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 15

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,17 @@
2424
],
2525
"minimum-stability": "stable",
2626
"require": {
27+
"php": ">=8.2",
2728
"guzzlehttp/guzzle": "7.9.3"
2829
},
2930
"require-dev": {
30-
"phpunit/phpunit": "^11.5.2",
3131
"symplify/easy-coding-standard": "12.5.16",
3232
"testcontainers/testcontainers": "1.0.2",
33-
"phpstan/phpstan": "^2.1"
33+
"phpstan/phpstan": "2.1.16",
34+
"phpunit/phpunit": "11.5.21"
3435
},
3536
"scripts": {
36-
"analyze": "vendor/bin/ecs check",
37+
"analyze": "vendor/bin/ecs check && composer stan",
3738
"format": "vendor/bin/ecs check --fix",
3839
"stan": " vendor/bin/phpstan analyze -l 5 src tests",
3940
"qa": [

0 commit comments

Comments
 (0)