File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,11 @@ jobs:
26
26
strategy :
27
27
matrix :
28
28
php :
29
- - " 8.1"
30
29
- " 8.2"
31
30
- " 8.3"
32
31
- " 8.4"
33
32
laravel :
34
- - " 9"
35
- - " 10"
36
33
- " 11"
37
- exclude :
38
- - php : " 8.1"
39
- laravel : " 11"
40
34
41
35
steps :
42
36
- name : Checkout code
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Unreleased
4
+
5
+ * Dropped support for Laravel 9 and 10
6
+ * Dropped support for PHP 8.1 (Laravel 11 requires at least PHP 8.2)
7
+
3
8
## 5.10.0 - 2024-11-22
4
9
5
10
* Added support for PHP 8.4
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " ~8.1.0 || ~8. 2.0 || ~8.3.0 || ~8.4.0" ,
14
+ "php" : " ~8.2.0 || ~8.3.0 || ~8.4.0" ,
15
15
"kreait/firebase-php" : " ^7.13" ,
16
- "illuminate/contracts" : " ^9.0 || ^10.0 || ^11.0" ,
17
- "illuminate/support" : " ^9.0 || ^10.0 || ^11.0" ,
16
+ "illuminate/contracts" : " ^11.0" ,
17
+ "illuminate/notifications" : " ^11.0" ,
18
+ "illuminate/support" : " ^11.0" ,
18
19
"symfony/cache" : " ^6.1.2 || ^7.0.3"
19
20
},
20
21
"require-dev" : {
21
- "orchestra/testbench" : " ^7.0 || ^8.0 || ^ 9.0" ,
22
+ "orchestra/testbench" : " ^9.0" ,
22
23
"laravel/pint" : " ^1.14" ,
23
24
"phpunit/phpunit" : " ^9.6.17 || ^10.5.13"
24
25
},
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ protected function resolveJsonCredentials(string $credentials): string
60
60
61
61
protected function configure (string $ name ): FirebaseProject
62
62
{
63
- $ factory = new Factory () ;
63
+ $ factory = new Factory ;
64
64
65
65
$ config = $ this ->configuration ($ name );
66
66
You can’t perform that action at this time.
0 commit comments