File tree Expand file tree Collapse file tree 4 files changed +13
-20
lines changed Expand file tree Collapse file tree 4 files changed +13
-20
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,13 @@ jobs:
13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
- php : [8.2, 8. 3, 8.4]
17
- laravel : [10 .*, 11 .*]
16
+ php : [8.3, 8.4]
17
+ laravel : [11 .*, 12 .*]
18
18
include :
19
- - laravel : 10.*
20
- testbench : 8.*
21
19
- laravel : 11.*
22
20
testbench : 9.*
23
- exclude :
24
- - laravel : 10.*
25
- php : 8.4
21
+ - laravel : 12.*
22
+ testbench : 10.*
26
23
27
24
steps :
28
25
- name : Checkout code
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ^8.2 " ,
13
+ "php" : " ^8.3 " ,
14
14
"giggsey/libphonenumber-for-php" : " ^8.13" ,
15
- "laravel/framework" : " ^10 .0|^11 .0"
15
+ "laravel/framework" : " ^11 .0|^12 .0"
16
16
},
17
17
"require-dev" : {
18
- "friendsofphp/php-cs-fixer" : " ^3.4 " ,
19
- "nunomaduro /larastan" : " ^2 .0" ,
20
- "orchestra/testbench" : " ^7.5|^8. 0|^9 .0" ,
21
- "phpstan/phpstan" : " ^1.2 " ,
22
- "phpunit/phpunit" : " ^9.3|^ 10.0|^10 .5"
18
+ "friendsofphp/php-cs-fixer" : " ^3.75 " ,
19
+ "larastan /larastan" : " ^3 .0" ,
20
+ "orchestra/testbench" : " ^9. 0|^10 .0" ,
21
+ "phpstan/phpstan" : " ^2.1 " ,
22
+ "phpunit/phpunit" : " ^10.5|^11 .5"
23
23
},
24
24
"autoload" : {
25
25
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
includes:
2
- - ./vendor/nunomaduro /larastan/extension.neon
2
+ - ./vendor/larastan /larastan/extension.neon
3
3
4
4
parameters:
5
5
@@ -9,5 +9,3 @@ parameters:
9
9
10
10
# The level 9 is the highest level
11
11
level: 5
12
-
13
- checkMissingIterableValueType: false
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ public function testRunServiceNotFailIfIsValid()
27
27
'email ' => 'example@example.com ' ,
28
28
]);
29
29
30
- $ service ->run ();
31
-
32
- $ this ->assertTrue (true );
30
+ $ this ->assertNull ($ service ->run ());
33
31
}
34
32
}
35
33
You can’t perform that action at this time.
0 commit comments