File tree Expand file tree Collapse file tree 4 files changed +30
-25
lines changed Expand file tree Collapse file tree 4 files changed +30
-25
lines changed Original file line number Diff line number Diff line change @@ -14,16 +14,22 @@ jobs:
14
14
matrix :
15
15
os : [ubuntu-latest]
16
16
php : [8.3, 8.2, 8.1, 8.0]
17
- laravel : [10.*, 9.*, 8.*]
17
+ laravel : [11.*, 10.*, 9.*, 8.*]
18
18
stability : [prefer-lowest, prefer-stable]
19
19
include :
20
+ - laravel : 11.*
21
+ testbench : 9.*
20
22
- laravel : 10.*
21
23
testbench : 8.*
22
24
- laravel : 9.*
23
25
testbench : 7.*
24
26
- laravel : 8.*
25
27
testbench : ^6.23
26
28
exclude :
29
+ - laravel : 11.*
30
+ php : 8.0
31
+ - laravel : 11.*
32
+ php : 8.1
27
33
- laravel : 10.*
28
34
php : 8.0
29
35
Original file line number Diff line number Diff line change 1
1
vendor
2
2
composer.lock
3
3
.phpunit.result.cache
4
- .php-cs-fixer.cache
4
+ .php-cs-fixer.cache
5
+ .phpunit.cache
Original file line number Diff line number Diff line change 19
19
"require" : {
20
20
"php" : " ^8.0" ,
21
21
"facebook/php-business-sdk" : " ^15.0.1" ,
22
- "illuminate/http" : " ^8.0|^9.0|^10.0" ,
23
- "illuminate/support" : " ^8.0|^9.0|^10.0"
22
+ "illuminate/http" : " ^8.0|^9.0|^10.0|^11.0 " ,
23
+ "illuminate/support" : " ^8.0|^9.0|^10.0|^11.0 "
24
24
},
25
25
"require-dev" : {
26
26
"friendsofphp/php-cs-fixer" : " ^3.3" ,
27
- "orchestra/testbench" : " ^6.0|^7.0|^8.0" ,
28
- "phpunit/phpunit" : " ^9.0"
27
+ "orchestra/testbench" : " ^6.0|^7.0|^8.0|^9.0 " ,
28
+ "phpunit/phpunit" : " ^9.0|^10.0 "
29
29
},
30
30
"autoload" : {
31
31
"psr-4" : {
Original file line number Diff line number Diff line change 3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
bootstrap =" vendor/autoload.php"
5
5
backupGlobals =" false"
6
- backupStaticAttributes =" false"
7
- colors =" true" verbose =" true"
8
- convertErrorsToExceptions =" true"
9
- convertNoticesToExceptions =" true"
10
- convertWarningsToExceptions =" true"
6
+ colors =" true"
11
7
processIsolation =" false"
12
8
stopOnFailure =" false"
13
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
9
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd"
10
+ cacheDirectory =" .phpunit.cache"
11
+ backupStaticProperties =" false"
14
12
>
15
- < coverage >
16
- < include >
17
- <directory suffix = " .php " >src/ </directory >
18
- </ include >
19
- </ coverage >
20
- < testsuites >
21
- < testsuite name =" Esign Test Suite " >
22
- < directory >tests</ directory >
23
- </ testsuite >
24
- </ testsuites >
25
- < php >
26
- < env name = " DB_CONNECTION " value = " testing " / >
27
- </ php >
13
+ < testsuites >
14
+ < testsuite name = " Esign Test Suite " >
15
+ <directory >tests </directory >
16
+ </ testsuite >
17
+ </ testsuites >
18
+ < php >
19
+ < env name =" DB_CONNECTION " value = " testing " / >
20
+ </ php >
21
+ < source >
22
+ <include >
23
+ < directory suffix = " . php" >src/</ directory >
24
+ </ include >
25
+ </ source >
28
26
</phpunit >
You can’t perform that action at this time.
0 commit comments