File tree 4 files changed +23
-32
lines changed
4 files changed +23
-32
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ composer.lock
5
5
/build
6
6
.phpunit.result.cache
7
7
.php_cs.cache
8
+ /.phpunit.cache
Original file line number Diff line number Diff line change 15
15
"test" : " ./vendor/bin/phpunit"
16
16
},
17
17
"require" : {
18
- "illuminate/http" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0" ,
19
- "illuminate/console" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0" ,
20
- "illuminate/support" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0" ,
21
- "illuminate/filesystem" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0"
18
+ "illuminate/http" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 " ,
19
+ "illuminate/console" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 " ,
20
+ "illuminate/support" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 " ,
21
+ "illuminate/filesystem" : " 5.2 - 5.8 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 "
22
22
},
23
23
"require-dev" : {
24
- "phpunit/phpunit" : " 5.7 | 6.0 | 7.0 | 7.5 | 8.4 | ^8.5 | ^9.3" ,
24
+ "phpunit/phpunit" : " 5.7 | 6.0 | 7.0 | 7.5 | 8.4 | ^8.5 | ^9.3 | ^10.0 " ,
25
25
"mockery/mockery" : " ^1.1.0 | ^1.3.0" ,
26
26
"friendsofphp/php-cs-fixer" : " ^2.16.0" ,
27
27
"overtrue/phplint" : " ^1.1 | ^2.0"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- colors =" true"
5
- convertErrorsToExceptions =" true"
6
- convertNoticesToExceptions =" true"
7
- convertWarningsToExceptions =" true"
8
- processIsolation =" false"
9
- stopOnFailure =" false"
10
- bootstrap =" vendor/autoload.php" >
11
- <testsuites >
12
- <testsuite name =" Application Test Suite" >
13
- <directory >./tests/</directory >
14
- </testsuite >
15
- </testsuites >
16
- <filter >
17
- <whitelist >
18
- <directory suffix =" .php" >src/</directory >
19
- </whitelist >
20
- </filter >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" colors =" true" processIsolation =" false" stopOnFailure =" false" bootstrap =" vendor/autoload.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <coverage >
4
+ <include >
5
+ <directory suffix =" .php" >src/</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuites >
9
+ <testsuite name =" Application Test Suite" >
10
+ <directory >./tests/</directory >
11
+ </testsuite >
12
+ </testsuites >
21
13
</phpunit >
Original file line number Diff line number Diff line change @@ -69,14 +69,12 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for how to contribute changes. All contri
69
69
70
70
> Laravel 5/6 should be still supported but we are not testing them via automation sccripts
71
71
72
- | Version | PHP |
73
- | ------- | ----------- |
74
- | 9.* | 8.1-node-17 |
75
- | 9.* | 8.0-node-17 |
76
- | 8.* | 8.1-node-17 |
77
- | 8.* | 8.0-node-17 |
78
- | 8.* | 7.4-node-17 |
79
- | 7.* | 7.4-node-17 |
72
+ | Version | PHP |
73
+ | ---------| ---------------|
74
+ | 10.* | 8.1, 8.2 |
75
+ | 9.* | 8.0, 8.1 |
76
+ | 8.* | 7.4, 8.0, 8.1 |
77
+ | 7.* | 7.4 |
80
78
81
79
82
80
You can’t perform that action at this time.
0 commit comments