Skip to content

Commit a1d95a0

Browse files
committed
build: min php version is 8.0.2
1 parent 368795e commit a1d95a0

4 files changed

Lines changed: 5 additions & 14 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: '7.4'
15-
job-description: 'Ubuntu; PHP 7.4; latest-deps'
16-
17-
- operating-system: 'ubuntu-latest'
18-
php-version: '7.4'
19-
composer-flags: '--prefer-lowest'
20-
job-description: 'Ubuntu; PHP 7.4; lowest-deps'
21-
2213
- operating-system: 'ubuntu-latest'
2314
php-version: '8.0'
2415
job-description: 'Ubuntu; PHP 8.0; latest-deps'

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
return (new PhpCsFixer\Config())
88
->setRules([
99
'@Symfony' => true,
10-
'@PHP74Migration' => true,
10+
'@PHP80Migration' => true,
1111

1212
'combine_consecutive_issets' => true,
1313
'combine_consecutive_unsets' => true,

README.md

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

99
### Requirements:
1010

11-
- PHP >= 7.4
11+
- PHP >= 8.0.2
1212

1313
### Installation:
1414
```bash

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"description": "W3C HTML Validator service.",
55
"license": "LGPL-3.0-or-later",
66
"require": {
7-
"php": ">=7.4",
8-
"symfony/http-client": "^4.4.11||^5.0||^6.0"
7+
"php": ">=8.0.2",
8+
"symfony/http-client": "^5.4||^6.0"
99
},
1010
"authors": [
1111
{
1212
"name": "Gemorroj"
1313
}
1414
],
1515
"require-dev": {
16-
"phpunit/phpunit": "^9.5.16",
16+
"phpunit/phpunit": "^9.6",
1717
"friendsofphp/php-cs-fixer": "^3.0"
1818
},
1919
"autoload": {

0 commit comments

Comments
 (0)