From 87df081b4035879fa307fa59c7fc960dce6b7fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Pimpa=CC=83o?= Date: Tue, 16 Dec 2025 16:29:19 +0000 Subject: [PATCH 1/2] chore: allow symfony 8 --- .ddev/config.yaml | 4 ++-- composer.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 1011e92..4d8e072 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -29,7 +29,7 @@ disable_upload_dirs_warning: true # docroot: # Relative path to the directory containing index.php. -# php_version: "8.3" # PHP version to use, "5.6" through "8.4" +# php_version: "8.3" # PHP version to use, "5.6" through "8.5" # You can explicitly specify the webimage but this # is not recommended, as the images are often closely tied to DDEV's' behavior, @@ -44,7 +44,7 @@ disable_upload_dirs_warning: true # version: # database version, like "10.11" or "8.0" # MariaDB versions can be 5.5-10.8, 10.11, 11.4, 11.8 # MySQL versions can be 5.5-8.0, 8.4 -# PostgreSQL versions can be 9-17 +# PostgreSQL versions can be 9-18 # router_http_port: # Port to be used for http (defaults to global configuration, usually 80) # router_https_port: # Port for https (defaults to global configuration, usually 443) diff --git a/composer.json b/composer.json index 2697262..58ddd34 100644 --- a/composer.json +++ b/composer.json @@ -15,16 +15,16 @@ "php": ">=8.1", "myclabs/deep-copy": "^1.13", "programmatordev/php-api-sdk": "^2.1", - "symfony/options-resolver": "^6.4|^7.3" + "symfony/options-resolver": "^6.4|^7.4|^8.0" }, "require-dev": { "monolog/monolog": "^3.9", "nyholm/psr7": "^1.8", "php-http/mock-client": "^1.6", "phpunit/phpunit": "^10.5", - "symfony/cache": "^6.4|^7.3", - "symfony/http-client": "^6.4|^7.3", - "symfony/var-dumper": "^6.4|^7.3" + "symfony/cache": "^6.4|^7.4|^8.0", + "symfony/http-client": "^6.4|^7.4|^8.0", + "symfony/var-dumper": "^6.4|^7.4|^8.0" }, "provide": { "psr/http-client-implementation": "1.0", From fb4b16e88cad83f05e6b44e2d505f47c2272f09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Pimp=C3=A3o?= <41913452+andrepimpao@users.noreply.github.com> Date: Tue, 16 Dec 2025 16:30:43 +0000 Subject: [PATCH 2/2] chore: add php8.5 to CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97b4a8a..b03e950 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.1', '8.2', '8.3', '8.4'] + php: ['8.1', '8.2', '8.3', '8.4', '8.5'] steps: - name: Checkout code