Skip to content

Commit aa04268

Browse files
committed
build: drop dupposer for php 8.2
1 parent 7ae4edc commit aa04268

3 files changed

Lines changed: 345 additions & 345 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php: [ 8.2, 8.3, 8.4 ]
10+
php: [ 8.3, 8.4 ]
1111

1212
steps:
1313
- uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
needs: [ composer ]
3838
strategy:
3939
matrix:
40-
php: [ 8.2, 8.3, 8.4 ]
40+
php: [ 8.3, 8.4 ]
4141

4242
outputs:
4343
coverage: ${{ steps.store-coverage.outputs.coverage_text }}
@@ -72,7 +72,7 @@ jobs:
7272
needs: [ phpunit ]
7373
strategy:
7474
matrix:
75-
php: [ 8.2, 8.3, 8.4 ]
75+
php: [ 8.3, 8.4 ]
7676

7777
steps:
7878
- uses: actions/checkout@v4
@@ -95,7 +95,7 @@ jobs:
9595
needs: [ composer ]
9696
strategy:
9797
matrix:
98-
php: [ 8.2, 8.3, 8.4 ]
98+
php: [ 8.3, 8.4 ]
9999

100100
steps:
101101
- uses: actions/download-artifact@v4
@@ -118,7 +118,7 @@ jobs:
118118
needs: [ composer ]
119119
strategy:
120120
matrix:
121-
php: [ 8.2, 8.3, 8.4 ]
121+
php: [ 8.3, 8.4 ]
122122

123123
steps:
124124
- uses: actions/download-artifact@v4
@@ -142,7 +142,7 @@ jobs:
142142
needs: [ composer ]
143143
strategy:
144144
matrix:
145-
php: [ 8.2, 8.3, 8.4 ]
145+
php: [ 8.3, 8.4 ]
146146

147147
steps:
148148
- uses: actions/download-artifact@v4

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"license": "MIT",
55

66
"require": {
7-
"php": ">=8.2",
7+
"php": ">=8.3",
88
"psr/container": "^2.0.1"
99
},
1010
"require-dev": {
11-
"phpstan/phpstan": "^1.10",
12-
"phpunit/phpunit": "^10.1",
13-
"phpmd/phpmd": "^2.13",
14-
"squizlabs/php_codesniffer": "^3.7"
11+
"phpstan/phpstan": "^2.1",
12+
"phpunit/phpunit": "^12.4",
13+
"phpmd/phpmd": "^2.15",
14+
"squizlabs/php_codesniffer": "^4.0"
1515
},
1616

1717
"provide": {

0 commit comments

Comments
 (0)