Drop support for PHP 7.1, 7.2 and 7.3
This commit doesn't yet enforce the new requirement since previous version will continue to work for a short while.
This commit is contained in:
parent
c0c743f9c6
commit
0a47d89193
4 changed files with 913 additions and 792 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -6,7 +6,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
|
php-versions: ['7.4', '8.0', '8.1', '8.2']
|
||||||
name: PHP ${{ matrix.php-versions }}
|
name: PHP ${{ matrix.php-versions }}
|
||||||
steps:
|
steps:
|
||||||
- name: Set locales
|
- name: Set locales
|
||||||
|
|
|
@ -329,7 +329,9 @@ public static function getPhpEol(string $fullVersion): string
|
||||||
'7.2' => '2020-11-30',
|
'7.2' => '2020-11-30',
|
||||||
'7.3' => '2021-12-06',
|
'7.3' => '2021-12-06',
|
||||||
'7.4' => '2022-11-28',
|
'7.4' => '2022-11-28',
|
||||||
'8.0' => '2023-12-01',
|
'8.0' => '2023-11-26',
|
||||||
|
'8.1' => '2024-11-25',
|
||||||
|
'8.2' => '2025-12-08',
|
||||||
][$matches[1]] ?? (new \DateTime('+2 year'))->format('Y-m-d');
|
][$matches[1]] ?? (new \DateTime('+2 year'))->format('Y-m-d');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true,
|
"sort-packages": true,
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": "7.1.29"
|
"php": "7.4.33"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.1",
|
"php": ">=7.4",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-zlib": "*",
|
"ext-zlib": "*",
|
||||||
"arthurhoaro/web-thumbnailer": "^2.0",
|
"arthurhoaro/web-thumbnailer": "^2.0",
|
||||||
|
@ -31,8 +31,8 @@
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"roave/security-advisories": "dev-master",
|
"roave/security-advisories": "dev-master",
|
||||||
"squizlabs/php_codesniffer": "3.*",
|
"squizlabs/php_codesniffer": "^3.0",
|
||||||
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
"phpunit/phpunit": "^9.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
|
"ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
|
||||||
|
|
1691
composer.lock
generated
1691
composer.lock
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue