From 5f57c1b7e82630c3ad441f2d76bf75c4c442e62c Mon Sep 17 00:00:00 2001 From: Heiko Jerichen Date: Mon, 15 Dec 2025 14:52:28 +0100 Subject: [PATCH 1/2] Update dependencies. --- composer.json | 6 +++--- psalm.xml | 55 ++++++++++++++++++++++++++++----------------------- 2 files changed, 33 insertions(+), 28 deletions(-) diff --git a/composer.json b/composer.json index 33ad089..1060890 100644 --- a/composer.json +++ b/composer.json @@ -5,11 +5,11 @@ "require": { "php": "^8.2", "ext-pdo": "*", - "symfony/yaml": "^6.0 | ^7.0", - "sebastian/comparator": "^4.0 | ^5.0 | ^6.0" + "symfony/yaml": "^6.0 | ^7.0 | ^8.0", + "sebastian/comparator": "^4.0 | ^5.0 | ^6.0 | ^7.0" }, "require-dev": { - "phpunit/phpunit": "^11.5", + "phpunit/phpunit": "^12.5", "phpspec/prophecy-phpunit": "^2.0", "vimeo/psalm": "^6.0", "psalm/plugin-phpunit": "^0.19.2" diff --git a/psalm.xml b/psalm.xml index 32a81da..323804e 100644 --- a/psalm.xml +++ b/psalm.xml @@ -1,30 +1,35 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 9e0cddfd2b3890c69e8bb1f7a2553fb3ff90009e Mon Sep 17 00:00:00 2001 From: Heiko Jerichen Date: Mon, 15 Dec 2025 14:56:19 +0100 Subject: [PATCH 2/2] Make PHP 8.3 to minimum PHP version. --- .github/workflows/continuous-integration.yml | 6 +++--- composer.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index eb3a6ec..8d9578b 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,9 +12,9 @@ jobs: strategy: matrix: php: - - 8.2 - 8.3 - 8.4 + - 8.5 dependencies: - "--prefer-lowest" - "" @@ -80,7 +80,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 coverage: none - name: Get Composer Cache Directory @@ -120,7 +120,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 coverage: pcov - name: Get Composer Cache Directory diff --git a/composer.json b/composer.json index 1060890..4d03026 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "An alternative to phpunit/dbunit.", "type": "library", "require": { - "php": "^8.2", + "php": "^8.3", "ext-pdo": "*", "symfony/yaml": "^6.0 | ^7.0 | ^8.0", "sebastian/comparator": "^4.0 | ^5.0 | ^6.0 | ^7.0"