Skip to content

Commit 7d0180b

Browse files
Merge pull request #35 from Stillat/restore-php-81-support
Restores PHP 8.1 support
2 parents 163130b + ed8699c commit 7d0180b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php: [8.2, 8.3]
16+
php: [8.1, 8.2, 8.3]
1717
laravel: [9.*, 10.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
os: [ubuntu-latest]
20+
exclude:
21+
- laravel: 11.*
22+
php: 8.1
2023

2124
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2225

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
}
1212
},
1313
"require": {
14-
"php": "^8.2.0",
14+
"php": "^8.1.0",
1515
"laravel/framework": "^9.36 || ^10.0 || ^11.0"
1616
},
1717
"require-dev": {
1818
"orchestra/testbench": "*",
1919
"laravel/pint": "^1.4",
2020
"brianium/paratest": "*",
21-
"pestphp/pest": "^3.3"
21+
"pestphp/pest": "^2"
2222
},
2323
"minimum-stability": "dev",
2424
"prefer-stable": true,

0 commit comments

Comments
 (0)