From 747c400f59fd5fdeda5a5794e69023fbc3c97390 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Fri, 1 Dec 2023 16:18:17 +0100 Subject: [PATCH] test with symfony 7 --- .github/workflows/test-application.yaml | 3 +-- CHANGELOG.md | 2 ++ composer.json | 10 +++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-application.yaml b/.github/workflows/test-application.yaml index d54a4df..4581785 100644 --- a/.github/workflows/test-application.yaml +++ b/.github/workflows/test-application.yaml @@ -18,9 +18,8 @@ jobs: matrix: include: - - php-version: '7.4' + - php-version: '8.0' dependencies: 'lowest' - - php-version: '7.4' - php-version: '8.0' - php-version: '8.1' - php-version: '8.2' diff --git a/CHANGELOG.md b/CHANGELOG.md index 3473204..1e20fda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Version 2 * Added static typing whereever possible. This should not change anything, but the added strictness might trigger errors where it was more tolerant for incorrect types before. * Renamed cli-config.php.dist to cli-config.dist.php and cleaned up to be better documented. +* Dropped support for PHP 7. +* Allow installation with Symfony 7. Version 1 ========= diff --git a/composer.json b/composer.json index 2766f1d..fbb940c 100644 --- a/composer.json +++ b/composer.json @@ -15,22 +15,22 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.0", "ext-xml":"*", "ext-dom": "*", "ext-curl":"*", "ext-json":"*", "phpcr/phpcr": "~2.1.5", - "phpcr/phpcr-utils": "^1.8.0", - "jackalope/jackalope": "^2.0.0-beta2" + "phpcr/phpcr-utils": "^1.8.0 || ^2.0", + "jackalope/jackalope": "^2.0.0-RC1" }, "provide": { "jackalope/jackalope-transport": "2.0.0" }, "require-dev": { "psr/log": "~1.0", - "phpcr/phpcr-api-tests": "2.1.24", - "symfony/console": "^2.3 || ^3.4 || ^4.3 || ^5.0 || ^6.0", + "phpcr/phpcr-api-tests": "2.1.25", + "symfony/console": "^2.3 || ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0", "phpunit/phpunit": "^9.5", "phpstan/phpstan": "^1.9" },