From 787047a78eddbd07edd4407633ed41d526dc28ae Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Sat, 21 Dec 2024 16:11:45 +0100 Subject: [PATCH] Bump the min PHP version to PHP 7.4 --- .github/workflows/ci.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2aef289..5db6f31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,11 +24,11 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] + php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] operating-system: [ ubuntu-latest ] composer_flags: [ '' ] include: - - php: '7.2' + - php: '7.4' composer_flags: '--prefer-lowest' operating-system: ubuntu-latest - php: '8.0' diff --git a/composer.json b/composer.json index 3c49bea..316e779 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.2.5 || ^8.0", + "php": "^7.4 || ^8.0", "ext-dom": "*", "ext-libxml": "*", "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"