File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Expand file tree Collapse file tree 3 files changed +12
-8
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 : ['7.4', '8.0', '8.1']
18
- laravel : ['^8.0']
17
+ php : [7.4, '8.0', 8.1]
18
+ laravel : [8, 9]
19
+ exclude :
20
+ - php : 7.4
21
+ laravel : 9
19
22
20
23
steps :
21
24
- name : Checkout Code
@@ -31,14 +34,14 @@ jobs:
31
34
ini-values : error_reporting=E_ALL
32
35
33
36
- name : Set Laravel Version
34
- run : composer require "laravel/framework: ${{ matrix.laravel }}" --no-update -n
37
+ run : composer require "illuminate/database:^ ${{ matrix.laravel }}" --no-update
35
38
36
39
- name : Install dependencies
37
40
uses : nick-invision/retry@v1
38
41
with :
39
42
timeout_minutes : 5
40
43
max_attempts : 5
41
- command : composer install --no-suggest --prefer-dist -n -o
44
+ command : composer update --prefer-dist --no-interaction --no-progress
42
45
43
46
- name : Execute tests
44
47
run : vendor/bin/phpunit
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. This projec
7
7
8
8
### Added
9
9
10
+ - Package now supports Laravel 9.
10
11
- Package now supports PHP 8.1.
11
12
- Upgraded to v2 of the ` laravel-json-api/eloquent ` dependency.
12
13
Original file line number Diff line number Diff line change 25
25
"require" : {
26
26
"php" : " ^7.4|^8.0" ,
27
27
"ext-json" : " *" ,
28
- "illuminate/database" : " ^8.0" ,
29
- "illuminate/pagination" : " ^8.0" ,
30
- "illuminate/support" : " ^8.0" ,
28
+ "illuminate/database" : " ^8.0|^9.0 " ,
29
+ "illuminate/pagination" : " ^8.0|^9.0 " ,
30
+ "illuminate/support" : " ^8.0|^9.0 " ,
31
31
"laravel-json-api/eloquent" : " ^2.0"
32
32
},
33
33
"require-dev" : {
34
- "orchestra/testbench" : " ^6.23" ,
34
+ "orchestra/testbench" : " ^6.23|^7.0 " ,
35
35
"phpunit/phpunit" : " ^9.5.10"
36
36
},
37
37
"autoload" : {
You can’t perform that action at this time.
0 commit comments