Skip to content

Commit 1f991db

Browse files
committed
Adds L11 support
1 parent 7fa676b commit 1f991db

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: ['8.0', 8.1, 8.2, 8.3]
20-
laravel: [9, 10]
20+
laravel: [9, 10, 11]
2121
exclude:
2222
- php: '8.0'
2323
laravel: 10
24+
- php: '8.0'
25+
laravel: 11
26+
- php: '8.1'
27+
laravel: 11
2428
- php: 8.3
2529
laravel: 9
2630

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
],
1212
"require": {
1313
"php": "^8.0",
14-
"illuminate/console": "^9.21|^10.0",
15-
"illuminate/filesystem": "^9.21|^10.0",
16-
"illuminate/support": "^9.21|^10.0",
17-
"illuminate/validation": "^9.21|^10.0"
14+
"illuminate/console": "^9.21|^10.0|^11.0",
15+
"illuminate/filesystem": "^9.21|^10.0|^11.0",
16+
"illuminate/support": "^9.21|^10.0|^11.0",
17+
"illuminate/validation": "^9.21|^10.0|^11.0"
1818
},
1919
"require-dev": {
20-
"orchestra/testbench": "^7.0|^8.0",
21-
"phpunit/phpunit": "^9.3"
20+
"orchestra/testbench": "^7.0|^8.0|^9.0",
21+
"phpunit/phpunit": "^9.3|^10.4"
2222
},
2323
"autoload": {
2424
"psr-4": {

tests/AuthBackend/ThrottleLoginsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function it_can_generate_throttle_key(string $email, string $expectedEmai
2828
$this->assertSame($expectedEmail . '|192.168.0.1', $method->invoke($throttle, $request));
2929
}
3030

31-
public function emailProvider(): array
31+
public static function emailProvider(): array
3232
{
3333
return [
3434
'lowercase special characters' => ['ⓣⓔⓢⓣ@ⓛⓐⓡⓐⓥⓔⓛ.ⓒⓞⓜ', '[email protected]'],

0 commit comments

Comments
 (0)