From dd2f43cf6ae8198baf70737096efbfc7c3f8ae8c Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Fri, 20 Oct 2023 11:18:54 +0200 Subject: [PATCH 1/2] Update dev dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 68920e4..af1748f 100644 --- a/composer.json +++ b/composer.json @@ -7,11 +7,11 @@ }, "require-dev": { "ext-mbstring": "*", - "phpstan/phpstan": "^1.9", - "phpstan/phpstan-deprecation-rules": "^1.1", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^9.5", - "symfony/http-client": "^5.3" + "phpstan/phpstan": "^1.10.39", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "phpstan/phpstan-phpunit": "^1.3.15", + "phpunit/phpunit": "^9.6.13", + "symfony/http-client": "^5.4.29 || ^6.3.5" }, "autoload": { "psr-4": { From dd0cf3acc8703b22d57d9afb3b2091a77ed96a78 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Fri, 20 Oct 2023 11:20:01 +0200 Subject: [PATCH 2/2] Update the github actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd1da96..32c5557 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,22 +9,22 @@ jobs: name: Check composer.json runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.1' + php-version: '8.2' - run: composer validate --strict --no-check-lock static_analysis: name: Static analysis runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.1' + php-version: '8.2' - name: Install dependencies run: composer update --ansi --no-progress --prefer-dist --no-interaction - run: vendor/bin/phpstan analyze @@ -50,7 +50,7 @@ jobs: composer_flags: '--prefer-lowest' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: coverage: "none"