Skip to content

Commit ec4e180

Browse files
committed
build: min php version is 8.2, drop symfony 6.4 support
1 parent 19f8b08 commit ec4e180

4 files changed

Lines changed: 8 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
include:
13-
- operating-system: 'ubuntu-latest'
14-
php-version: '8.1'
15-
job-description: 'Ubuntu; PHP 8.1; latest-deps'
16-
17-
- operating-system: 'ubuntu-latest'
18-
php-version: '8.1'
19-
composer-flags: '--prefer-lowest'
20-
job-description: 'Ubuntu; PHP 8.1; lowest-deps'
21-
2213
- operating-system: 'ubuntu-latest'
2314
php-version: '8.2'
2415
job-description: 'Ubuntu; PHP 8.2; latest-deps'

.php-cs-fixer.dist.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
->setRules([
99
'@Symfony' => true,
1010
'@Symfony:risky' => true,
11-
'@PHP8x1Migration:risky' => true,
12-
'@PHP8x1Migration' => true,
11+
'@PHP8x2Migration' => true,
12+
'@PHP8x2Migration:risky' => true,
13+
'@PHPUnit11x0Migration:risky' => true,
1314

1415
'combine_consecutive_issets' => true,
1516
'combine_consecutive_unsets' => true,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Requirements:
66

7-
- PHP >= 8.1
7+
- PHP >= 8.2
88

99
### Installation:
1010
```bash

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"description": "W3C CSS Validator service.",
55
"license": "LGPL-3.0-or-later",
66
"require": {
7-
"php": ">=8.1",
7+
"php": ">=8.2",
88
"ext-dom": "*",
99
"ext-libxml": "*",
10-
"symfony/http-client": "^6.4.18||^7.4||^8.0"
10+
"symfony/http-client": "^7.4||^8.0"
1111
},
1212
"authors": [
1313
{
1414
"name": "Gemorroj"
1515
}
1616
],
1717
"require-dev": {
18-
"phpunit/phpunit": "^9.6.31",
19-
"friendsofphp/php-cs-fixer": "^3.91.3"
18+
"phpunit/phpunit": "^11.5||^12.5",
19+
"friendsofphp/php-cs-fixer": "^3.93"
2020
},
2121
"autoload": {
2222
"psr-4": {

0 commit comments

Comments
 (0)