Skip to content

Commit 60392ff

Browse files
authored
Merge pull request #29 from pauci/feature/php-8.2
feat: Allow and test on php 8.2
2 parents 99014a8 + b542a9d commit 60392ff

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.1
20+
php-version: 8.2
2121
coverage: none
2222

2323
- name: Get composer cache directory
@@ -52,7 +52,7 @@ jobs:
5252
uses: shivammathur/setup-php@v2
5353
with:
5454
coverage: none
55-
php-version: 8.1
55+
php-version: 8.2
5656

5757
- name: Get composer cache directory
5858
id: composer-cache
@@ -77,7 +77,7 @@ jobs:
7777

7878
strategy:
7979
matrix:
80-
php-versions: ['8.0', '8.1']
80+
php-versions: ['8.0', '8.1', '8.2']
8181

8282
services:
8383
redis:

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@
2121
}
2222
},
2323
"require": {
24-
"php": "~8.0.0||~8.1.0",
24+
"php": "^8.0 || ^8.1 || ^8.2",
2525
"ext-json": "*",
26-
"doctrine/annotations": "^1.13",
2726
"psr/clock": "^1.0",
28-
"psr/container": "^1.0||^2.0",
27+
"psr/container": "^1.0 || ^2.0",
2928
"ramsey/uuid": "^4.0"
3029
},
3130
"require-dev": {
@@ -34,10 +33,10 @@
3433
"doctrine/dbal": "^3.2",
3534
"doctrine/orm": "^2.8",
3635
"guzzlehttp/guzzle": "^7.2",
37-
"php-parallel-lint/php-parallel-lint": "^1.2",
38-
"phpstan/phpstan": "^1.2",
36+
"php-parallel-lint/php-parallel-lint": "^1.3",
37+
"phpstan/phpstan": "^1.9",
3938
"phpunit/phpunit": "^9.5",
40-
"squizlabs/php_codesniffer": "^3.5",
39+
"squizlabs/php_codesniffer": "^3.7",
4140
"symfony/cache": "^6.0",
4241
"symfony/serializer": "^6.0"
4342
},

0 commit comments

Comments
 (0)