From 63fc2fe8209bca3ea71e6066294511ede1b9470d Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 18 Mar 2026 08:55:02 +0000 Subject: [PATCH 1/2] chore(deps): require PHP 8.2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3a8dd46..e635b78 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ "source": "https://github.com/socialiteproviders/manager" }, "require": { - "php": "^8.1", + "php": "^8.2", "illuminate/support": "^11.0 || ^12.0 || ^13.0", "laravel/socialite": "^5.5" }, From 9685f8b9bc174cd12c7947cccee9b326c6ecadd3 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 18 Mar 2026 08:57:32 +0000 Subject: [PATCH 2/2] ci: drop PHP 8.1 and add PHP 8.5 --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c229d4b..55b59c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,17 +14,17 @@ jobs: fail-fast: false matrix: coverage: [ 'none' ] - php-versions: [ '8.1', '8.2', '8.3', '8.4' ] + php-versions: [ '8.2', '8.3', '8.4', '8.5' ] exclude: - - php-versions: '8.4' + - php-versions: '8.5' include: - - php-versions: '8.4' + - php-versions: '8.5' coverage: 'xdebug' name: PHP ${{ matrix.php-versions }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -44,4 +44,4 @@ jobs: - name: Upload coverage results if: matrix.coverage != 'none' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5