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 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" },