Skip to content

Commit fcc4540

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

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 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 }
14-
- { laravel: ^10.0 }
15-
- { laravel: ^9.0 }
1616
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 } }
17+
- php: 8.2,
18+
lib: { laravel: ^13.0.x-dev }
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: `^11.0 || ^12.0`
99

1010
## Installing
1111

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
}
3131
},
3232
"require": {
33-
"php": "^8.0",
33+
"php": "^8.2",
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": "^11.0 || ^12.0 || ^13.0",
36+
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
37+
"illuminate/database": "^11.0 || ^12.0 || ^13.0",
38+
"illuminate/queue": "^11.0 || ^12.0 || ^13.0",
39+
"illuminate/support": "^11.0 || ^12.0 || ^13.0"
4040
},
4141
"require-dev": {
4242
"orchestra/testbench": "*",
43-
"orchestra/testbench-core": ">=7.0",
44-
"phpunit/phpunit": ">=9.5",
45-
"mockery/mockery": "^1.3.3 || ^1.4.2"
43+
"orchestra/testbench-core": ">=9.0",
44+
"phpunit/phpunit": ">=11.0",
45+
"mockery/mockery": "^1.6.12"
4646
},
4747
"minimum-stability": "dev",
4848
"prefer-stable": true,

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)