diff --git a/.gitignore b/.gitignore index b4a9ae4..896e906 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ composer.lock docs vendor coverage +.phpunit.result.cache diff --git a/CHANGELOG.md b/CHANGELOG.md index 26a9af1..f304142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `laravel-searchable` will be documented in this file +## 1.2.3 - 2019-02-27 + +- add support for Laravel 5.8 +- add support for PHPUnit 8.0 + ## 1.2.2 - 2019-02-01 - use Str:: and Arr:: instead of helper methods diff --git a/composer.json b/composer.json index 3c7ea1b..349c881 100644 --- a/composer.json +++ b/composer.json @@ -23,12 +23,12 @@ ], "require": { "php": "^7.1", - "laravel/framework": "~5.5.0|~5.6.0|~5.7.0" + "laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0" }, "require-dev": { - "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0", + "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0", "larapack/dd": "^1.0", - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^7.0|^8.0" }, "autoload": { "psr-4": { diff --git a/tests/TestCase.php b/tests/TestCase.php index 42dc063..6a3a70f 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -9,7 +9,7 @@ class TestCase extends Orchestra { - protected function setUp() + protected function setUp(): void { parent::setUp();