Skip to content

Commit 9905bde

Browse files
committed
Merge branch 'release/3.1.0'
2 parents fb49170 + e233bb2 commit 9905bde

File tree

4 files changed

+21
-18
lines changed

4 files changed

+21
-18
lines changed

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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

3228
install:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
All 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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
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": {

phpunit.xml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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"
@@ -11,15 +12,16 @@
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>

0 commit comments

Comments
 (0)