Skip to content

Commit

Permalink
Add support for L5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist committed Feb 27, 2019
1 parent a2211b5 commit 563202f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ composer.lock
docs
vendor
coverage
.phpunit.result.cache
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class TestCase extends Orchestra
{
protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 563202f

Please sign in to comment.