Skip to content

Commit a3c3fb7

Browse files
authored
Add support for PHP 8.3 (#8)
1 parent 050b26b commit a3c3fb7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
uses: actions/cache@v3
2222
with:
2323
path: ~/.composer/cache/files
24-
key: dependencies-php-8.2-illuminate-10.*-composer-${{ hashFiles('composer.json') }}
24+
key: dependencies-php-8.3-illuminate-10.*-composer-${{ hashFiles('composer.json') }}
2525

2626
- name: Setup PHP
2727
uses: shivammathur/setup-php@v2
2828
with:
29-
php-version: 8.2
29+
php-version: 8.3
3030
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
3131
coverage: xdebug
3232

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
php: [8.0, 8.1, 8.2]
19+
php: [8.0, 8.1, 8.2, 8.3]
2020
illuminate: [8.*, ^9.0, ^10.0]
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
@@ -33,6 +33,8 @@ jobs:
3333
illuminate: 6.*
3434
- php: 8.0
3535
illuminate: ^10.0
36+
- php: 8.3
37+
illuminate: 8.*
3638

3739
name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
3840

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Added
66
- Added Dependabot integration.
7+
- Added support for PHP 8.3
78

89
## [v1.5.0 (2022-03-02)](https://github.com/markwalet/laravel-packagist/compare/v1.4.0...v1.5.0)
910

0 commit comments

Comments
 (0)