File tree 3 files changed +19
-14
lines changed
3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ jobs:
14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : [8.1 , 8.2 ]
18
- laravel : [10 ]
17
+ php : [8.2 , 8.3 ]
18
+ laravel : [11 ]
19
19
20
20
steps :
21
21
- name : Checkout Code
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Setup PHP
25
25
uses : shivammathur/setup-php@v2
34
34
run : composer require "illuminate/contracts:^${{ matrix.laravel }}" --no-update
35
35
36
36
- name : Install dependencies
37
- uses : nick-fields/retry@v2
37
+ uses : nick-fields/retry@v3
38
38
with :
39
39
timeout_minutes : 5
40
40
max_attempts : 5
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This project adheres to
4
4
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
5
5
6
- ## Unreleased
6
+ ## Unreleased (Laravel 11)
7
+
8
+ ### Changed
9
+
10
+ - ** BREAKING** Package now requires Laravel 11.
11
+ - Minimum PHP version is now ` 8.2 ` .
7
12
8
13
## [ 2.1.0] - 2023-11-08
9
14
Original file line number Diff line number Diff line change 23
23
}
24
24
],
25
25
"require" : {
26
- "php" : " ^8.1 " ,
26
+ "php" : " ^8.2 " ,
27
27
"ext-json" : " *" ,
28
- "illuminate/contracts" : " ^10 .0" ,
29
- "illuminate/pipeline" : " ^10 .0" ,
30
- "laravel-json-api/core" : " ^3 .0" ,
31
- "laravel-json-api/validation" : " ^3 .0"
28
+ "illuminate/contracts" : " ^11 .0" ,
29
+ "illuminate/pipeline" : " ^11 .0" ,
30
+ "laravel-json-api/core" : " ^4 .0" ,
31
+ "laravel-json-api/validation" : " ^4 .0"
32
32
},
33
33
"require-dev" : {
34
- "laravel-json-api/testing" : " ^2 .0" ,
35
- "orchestra/testbench" : " ^8 .0" ,
34
+ "laravel-json-api/testing" : " ^3 .0" ,
35
+ "orchestra/testbench" : " ^9 .0" ,
36
36
"phpunit/phpunit" : " ^10.5"
37
37
},
38
38
"autoload" : {
47
47
},
48
48
"extra" : {
49
49
"branch-alias" : {
50
- "dev-develop" : " 2 .x-dev"
50
+ "dev-develop" : " 3 .x-dev"
51
51
}
52
52
},
53
- "minimum-stability" : " stable " ,
53
+ "minimum-stability" : " dev " ,
54
54
"prefer-stable" : true ,
55
55
"config" : {
56
56
"sort-packages" : true
You can’t perform that action at this time.
0 commit comments