File tree Expand file tree Collapse file tree 6 files changed +38
-15
lines changed Expand file tree Collapse file tree 6 files changed +38
-15
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,27 @@ filter:
9
9
10
10
build :
11
11
nodes :
12
- php72 :
12
+ php73 :
13
13
environment :
14
14
php :
15
15
version : 7.3
16
16
tests :
17
17
override :
18
18
- php-scrutinizer-run
19
19
-
20
- command : vendor/bin/phpunit --coverage-clover=coverage72
20
+ command : vendor/bin/phpunit --coverage-clover=coverage73
21
21
coverage :
22
- file : coverage72
22
+ file : coverage73
23
+ format : php-clover
24
+ php80 :
25
+ environment :
26
+ php :
27
+ version : " 8.0.0"
28
+ tests :
29
+ override :
30
+ - php-scrutinizer-run
31
+ -
32
+ command : XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage80
33
+ coverage :
34
+ file : coverage80
23
35
format : php-clover
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ language: php
6
6
7
7
php :
8
8
- 7.3
9
+ - 8.0
9
10
10
11
before_script :
11
12
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Original file line number Diff line number Diff line change
1
+ ## v12.0.0 (2020-12-02)
2
+ ### Added
3
+ - PHP 8.0 support
4
+
5
+ ### Removed
6
+ - Illuminate 5.8 support
7
+
1
8
## v9.0.0 (2019-03-02)
2
9
### Added
3
10
- Illuminate 5.8 support
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ The package documentation can be found on the [official website](http://www.lara
22
22
## Version Information
23
23
Version | Illuminate | Status | PHP Version
24
24
:----------|:--------------|:------------------------|:------------
25
- 11.x | 5.8.x - 8.x.x | Active support :rocket : | >= 7.3
25
+ 12.x | 6.x.x - 8.x.x | Active support :rocket : | >= 7.3 \| 8.0
26
+ 11.x | 5.8.x - 8.x.x | Active support | >= 7.3
26
27
10.x | 5.8.x - 7.x.x | Active support | >= 7.2.5
27
28
9.x | 5.8.x - 6.x.x | Active support | >= 7.1.3
28
29
8.x | 5.2.x - 5.7.x | Active support | >= 7.0.13
Original file line number Diff line number Diff line change 39
39
}
40
40
],
41
41
"require" : {
42
- "php" : " ^7.3" ,
43
- "illuminate/console" : " ^5.8|^ 6.0|^7.0|^8.0" ,
44
- "illuminate/database" : " ^5.8|^ 6.0|^7.0|^8.0" ,
45
- "illuminate/filesystem" : " ^5.8|^ 6.0|^7.0|^8.0"
42
+ "php" : " ^7.3|^8.0 " ,
43
+ "illuminate/console" : " ^6.0|^7.0|^8.0" ,
44
+ "illuminate/database" : " ^6.0|^7.0|^8.0" ,
45
+ "illuminate/filesystem" : " ^6.0|^7.0|^8.0"
46
46
},
47
47
"require-dev" : {
48
- "phpunit/phpunit" : " ^8 .0" ,
48
+ "phpunit/phpunit" : " ^9 .0" ,
49
49
"mockery/mockery" : " ^1.0" ,
50
- "orchestra/testbench" : " ^3.8 " ,
50
+ "orchestra/testbench" : " ^4.0 " ,
51
51
"ramsey/uuid" : " ^3.0"
52
52
},
53
53
"autoload" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
4
+ backupGlobals =" false"
3
5
backupStaticAttributes =" false"
4
6
bootstrap =" vendor/autoload.php"
5
7
colors =" true"
16
18
<directory suffix =" Test.php" >./tests</directory >
17
19
</testsuite >
18
20
</testsuites >
19
- <filter >
20
- <whitelist processUncoveredFilesFromWhitelist = " true " >
21
+ <coverage processUncoveredFiles = " true " >
22
+ <include >
21
23
<directory suffix =" .php" >./src</directory >
22
- </whitelist >
23
- </filter >
24
+ </include >
25
+ </coverage >
24
26
</phpunit >
You can’t perform that action at this time.
0 commit comments