Skip to content

Commit 9d6de6a

Browse files
committed
chore: 🤖 Update CI matrix and dependencies
1 parent 60eb4a9 commit 9d6de6a

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: ['8.0', 8.1, 8.2]
11+
php: [8.2, 8.3, 8.4]
1212
lib:
13+
- { laravel: ^13.0.x-dev }
14+
- { laravel: ^12.0 }
1315
- { laravel: ^11.0 }
1416
- { laravel: ^10.0 }
1517
- { laravel: ^9.0 }
16-
exclude:
17-
- { php: 8.0, lib: { laravel: ^10.0 } }
18-
- { php: 8.0, lib: { laravel: ^11.0 } }
19-
- { php: 8.1, lib: { laravel: ^11.0 } }
18+
exclude: []
2019

2120
steps:
2221
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Guarantee database stickiness over the same user's consecutive requests.
44

55
## Requirements
66

7-
- PHP: `^8.0`
8-
- Laravel: `^9.0 || ^10.0`
7+
- PHP: `^8.2`
8+
- Laravel: `^9.0 || ^10.0 || ^11.0 || ^12.0`
99

1010
## Installing
1111

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"require": {
3333
"php": "^8.0",
3434
"ext-pdo": "*",
35-
"illuminate/container": "^9.0 || ^10.0 || ^11.0 || ^12.0",
36-
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0",
37-
"illuminate/database": "^9.0 || ^10.0 || ^11.0 || ^12.0",
38-
"illuminate/queue": "^9.0 || ^10.0 || ^11.0 || ^12.0",
39-
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0"
35+
"illuminate/container": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
36+
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
37+
"illuminate/database": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
38+
"illuminate/queue": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
39+
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0"
4040
},
4141
"require-dev": {
4242
"orchestra/testbench": "*",

phpunit.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@
1010
<directory suffix="Test.php">./tests/</directory>
1111
</testsuite>
1212
</testsuites>
13+
<filter>
14+
<whitelist processUncoveredFilesFromWhitelist="true">
15+
<directory suffix=".php">src</directory>
16+
</whitelist>
17+
</filter>
1318
</phpunit>

0 commit comments

Comments
 (0)