diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ddd4c73..9ed22d9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -22,12 +22,12 @@ jobs: uses: actions/cache@v3 with: path: ~/.composer/cache/files - key: dependencies-php-8.2-illuminate-10.*-composer-${{ hashFiles('composer.json') }} + key: dependencies-php-8.3-illuminate-10.*-composer-${{ hashFiles('composer.json') }} - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 extensions: dom, libxml, mbstring, zip, pcntl coverage: xdebug diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e44f064..626653c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.0, 8.1, 8.2 ] + php: [ 8.0, 8.1, 8.2, 8.3 ] illuminate: [ 7.*, ~8.74, ^9.0, ^10.0 ] stability: [ prefer-lowest, prefer-stable ] include: @@ -31,14 +31,16 @@ jobs: exclude: - php: 8.1 illuminate: 7.* - - php: 8.1 - illuminate: 6.* - php: 8.0 illuminate: ^10.0 - php: 8.2 illuminate: 7.* - php: 8.2 illuminate: ~8.74 + - php: 8.3 + illuminate: 7.* + - php: 8.3 + illuminate: ~8.74 name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 92c7451..65e5fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.8.0...master) ### Added +- Added support for PHP 8.3. - Added dependabot integration ### Fixed