File tree Expand file tree Collapse file tree 4 files changed +21
-18
lines changed
Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,17 @@ matrix:
1212 env :
1313 - LARAVEL_VERSION=^7.0
1414 - PHPUNIT_VERSION=^8.0
15- - php : " 7.3"
16- env :
17- - LARAVEL_VERSION=^6.0
18- - PHPUNIT_VERSION=^8.0
1915 - php : " 7.3"
2016 env :
2117 - LARAVEL_VERSION=^7.0
2218 - PHPUNIT_VERSION=^8.0
2319 - php : " 7.3"
2420 env :
25- - LARAVEL_VERSION=^7 .0
21+ - LARAVEL_VERSION=^8 .0
2622 - PHPUNIT_VERSION=^9.0
2723 - php : " 7.4"
2824 env :
29- - LARAVEL_VERSION=^7 .0
25+ - LARAVEL_VERSION=^8 .0
3026 - PHPUNIT_VERSION=^9.0
3127
3228install :
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file. This project adheres to
44[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
55
6+ ## [ 3.1.0] - 2020-09-09
7+
8+ ### Added
9+ - Package now supports Laravel 8.
10+
611## [ 3.0.0] - 2020-04-12
712
813### Added
Original file line number Diff line number Diff line change 2323 "require" : {
2424 "php" : " ^7.2" ,
2525 "ext-json" : " *" ,
26- "illuminate/support" : " ^6.0|^7.0" ,
26+ "illuminate/support" : " ^6.0|^7.0|^8.0 " ,
2727 "phpunit/phpunit" : " ^8.0|^9.0"
2828 },
2929 "autoload" : {
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <phpunit backupGlobals =" false"
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ backupGlobals =" false"
34 backupStaticAttributes =" false"
45 beStrictAboutTestsThatDoNotTestAnything =" true"
56 bootstrap =" vendor/autoload.php"
1112 stopOnError =" false"
1213 stopOnFailure =" false"
1314 verbose =" true"
15+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
1416>
15- < testsuites >
16- < testsuite name = " Unit " >
17- <directory >./tests /</directory >
18- </ testsuite >
19- </ testsuites >
20- < filter >
21- < whitelist >
22- <directory suffix = " Test.php " >src /</directory >
23- </ whitelist >
24- </ filter >
17+ < coverage >
18+ < include >
19+ <directory suffix = " Test.php " >src /</directory >
20+ </ include >
21+ </ coverage >
22+ < testsuites >
23+ < testsuite name = " Unit " >
24+ <directory >./tests /</directory >
25+ </ testsuite >
26+ </ testsuites >
2527</phpunit >
You can’t perform that action at this time.
0 commit comments