File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : [8.2, 8.3]
18
- laravel : [11 ]
17
+ php : [8.2, 8.3, 8.4 ]
18
+ core : ['4.3.2', '5.0.1' ]
19
19
20
20
steps :
21
21
- name : Checkout Code
30
30
coverage : none
31
31
ini-values : error_reporting=E_ALL
32
32
33
- - name : Set Laravel Version
34
- run : composer require "laravel/framework :^${{ matrix.laravel }}" --no-update
33
+ - name : Set Laravel JSON:API Core Version
34
+ run : composer require "laravel-json-api/core :^${{ matrix.core }}" --no-update
35
35
36
36
- name : Install dependencies
37
37
uses : nick-fields/retry@v3
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. This projec
5
5
6
6
## Unreleased
7
7
8
+ ## [ 3.1.0] - 2025-01-18
9
+
10
+ ### Added
11
+
12
+ - Support ` laravel-json-api/core ` v4 and v5.
13
+ - Remove deprecation messages in PHP 8.4.
14
+
8
15
## [ 3.0.0] - 2024-03-28
9
16
10
17
### Changed
Original file line number Diff line number Diff line change 24
24
],
25
25
"require" : {
26
26
"php" : " ^8.2" ,
27
- "laravel-json-api/core" : " ^4.0 " ,
28
- "laravel-json-api/eloquent" : " ^4.0 " ,
27
+ "laravel-json-api/core" : " ^4.3.2|^5.0.1 " ,
28
+ "laravel-json-api/eloquent" : " ^4.4 " ,
29
29
"vinkla/hashids" : " ^12.0"
30
30
},
31
31
"require-dev" : {
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public static function withDefaultConnection(?string $connection): void
64
64
*
65
65
* @param string|null $column
66
66
*/
67
- public function __construct (string $ column = null )
67
+ public function __construct (? string $ column = null )
68
68
{
69
69
parent ::__construct ($ column );
70
70
$ this ->matchAs ('[a-zA-Z0-9]+ ' );
You can’t perform that action at this time.
0 commit comments