File tree 4 files changed +12
-14
lines changed
4 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
- php : [8.2, 8. 3, 8.4]
16
+ php : [8.3, 8.4]
17
17
18
18
steps :
19
19
- name : Checkout code
Original file line number Diff line number Diff line change 22
22
"minimum-stability" : " dev" ,
23
23
"prefer-stable" : true ,
24
24
"require" : {
25
- "php" : " ^8.2 " ,
26
- "guzzlehttp/guzzle" : " ^7.4 " ,
25
+ "php" : " ^8.3 " ,
26
+ "guzzlehttp/guzzle" : " ^7.8 " ,
27
27
"league/omnipay" : " ^3.2" ,
28
28
"omnipay/common" : " ^3.2" ,
29
- "illuminate/contracts" : " ^9.25|^10. 0|^11 .0"
29
+ "illuminate/contracts" : " ^11. 0|^12 .0"
30
30
},
31
31
"require-dev" : {
32
- "guzzlehttp/psr7" : " ^1" ,
32
+ "guzzlehttp/psr7" : " ^1|^2 " ,
33
33
"omnipay/tests" : " ^4.1" ,
34
- "phpunit/phpunit" : " ^9 .5|^10.0|^10 .5" ,
35
- "orchestra/testbench" : " ^7 .0|^8.0|^9 .0" ,
36
- "friendsofphp/php-cs-fixer" : " ^3.10 " ,
37
- "phpstan/phpstan" : " ^1.8 " ,
38
- "nunomaduro /larastan" : " ^2.1 "
34
+ "phpunit/phpunit" : " ^10 .5|^11 .5" ,
35
+ "orchestra/testbench" : " ^9 .0|^10 .0" ,
36
+ "friendsofphp/php-cs-fixer" : " ^3.75 " ,
37
+ "phpstan/phpstan" : " ^2.1 " ,
38
+ "larastan /larastan" : " ^3.0 "
39
39
},
40
40
"extra" : {
41
41
"laravel" : {
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
@@ -10,7 +10,5 @@ parameters:
10
10
# The level 9 is the highest level
11
11
level: 5
12
12
13
- checkMissingIterableValueType: false
14
-
15
13
ignoreErrors:
16
14
- '#Property Omnipay\\OfflineDummy\\Tests.* \(Omnipay\\OfflineDummy\\Gateway\) does not accept Omnipay\\Common\\GatewayInterface.#'
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public function __invoke(Request $request)
16
16
'amount ' => 'required|numeric ' ,
17
17
]);
18
18
19
- return view ('omnipay-offline-dummy::payment ' , [
19
+ return response ()-> view ('omnipay-offline-dummy::payment ' , [
20
20
'transactionId ' => $ request ->input ('transaction_id ' ),
21
21
'description ' => $ request ->input ('description ' ),
22
22
'amount ' => $ request ->input ('amount ' ),
You can’t perform that action at this time.
0 commit comments