Skip to content

Commit a7eddab

Browse files
committed
ci: fix PHP matrix to 8.2-8.4 and add .phpunit.cache to gitignore
PHPUnit 11 and orchestra/testbench 10 both require PHP 8.2+. Drop PHP 8.1 from the test matrix. Add .phpunit.cache/ and phpunit.xml.bak to .gitignore (artifacts from phpunit.xml migration).
1 parent 7dded8d commit a7eddab

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
php: ["8.1", "8.2", "8.3", "8.4"]
47+
php: ["8.2", "8.3", "8.4"]
4848

4949
steps:
5050
- uses: actions/checkout@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
composer.phar
22
.phpunit.result.*
3+
.phpunit.cache/
4+
phpunit.xml.bak
35
/vendor/
46

57
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control

0 commit comments

Comments
 (0)