Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.

Commit abd9377

Browse files
Merge pull request #1 from michael-rubel/patch/php82-support
PHP 8.2 Build
2 parents bd4c4ab + 53269f7 commit abd9377

File tree

2 files changed

+4
-44
lines changed

2 files changed

+4
-44
lines changed

.github/workflows/php-code-sniffer.yml

-35
This file was deleted.

.github/workflows/run-tests.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,9 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.0, 8.1]
17-
laravel: [^8.71, 9.*]
16+
php: [8.0, 8.1, 8.2]
17+
laravel: [9.*]
1818
stability: [prefer-lowest, prefer-stable]
19-
include:
20-
- testbench: 7.*
21-
laravel: 9.*
22-
- testbench: ^6.6
23-
laravel: ^8.71
2419

2520
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2621

@@ -32,7 +27,7 @@ jobs:
3227
uses: shivammathur/setup-php@v2
3328
with:
3429
php-version: ${{ matrix.php }}
35-
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
30+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl, gd, iconv, imagick, fileinfo
3631
coverage: xdebug
3732

3833
- name: Setup problem matchers
@@ -42,7 +37,7 @@ jobs:
4237
4338
- name: Install dependencies
4439
run: |
45-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
40+
composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.62.1" --dev --no-interaction --no-update
4641
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4742
4843
- name: Execute tests

0 commit comments

Comments
 (0)