File tree 4 files changed +11
-8
lines changed
4 files changed +11
-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.76, 9]
19
+ exclude :
20
+ - php : 7.4
21
+ laravel : 9
19
22
20
23
steps :
21
24
- name : Checkout Code
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 "laravel/framework:^ ${{ matrix.laravel }}" --no-update -n
35
38
36
39
- name : Install dependencies
37
40
uses : nick-invision/retry@v1
Original file line number Diff line number Diff line change @@ -7,7 +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 PHP 8.1.
10
+ - Package now supports PHP 8.1 and Laravel 9 .
11
11
12
12
## [ 1.0.1] - 2021-07-31
13
13
Original file line number Diff line number Diff line change 24
24
],
25
25
"require" : {
26
26
"php" : " ^7.4|^8.0" ,
27
- "illuminate/support" : " ^8.0" ,
27
+ "illuminate/support" : " ^8.0|^9.0 " ,
28
28
"laravel-json-api/eloquent" : " ^1.0.1|^2.0" ,
29
- "tenantcloud/laravel-boolean-softdeletes" : " ^3.1"
29
+ "tenantcloud/laravel-boolean-softdeletes" : " ^3.1|^4.0 "
30
30
},
31
31
"require-dev" : {
32
- "orchestra/testbench" : " ^6.23" ,
32
+ "orchestra/testbench" : " ^6.23|^7.0 " ,
33
33
"phpunit/phpunit" : " ^9.5.10"
34
34
},
35
35
"autoload" : {
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ public function testItForceDeletesModel($deleted): void
134
134
135
135
$ this ->schema ->repository ()->delete ((string ) $ post ->getRouteKey ());
136
136
137
- $ this ->assertDeleted ($ post );
137
+ $ this ->assertModelMissing ($ post );
138
138
$ this ->assertTrue ($ forceDeleted );
139
139
}
140
140
You can’t perform that action at this time.
0 commit comments