Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 27, 2019
1 parent c904325 commit 20ca99d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ env:
- COMPOSER_FLAGS=""

php:
- 7.1
- 7.2
- 7.3

Expand Down
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-tags` will be documented in this file

## 2.3.0 - 2019-02-27

- drop support for Laravel 5.7 and below
- drop support for PHP 7.1 and below

## 2.2.2 - 2019-02-27

- add support for Laravel 5.8
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": "^7.1",
"laravel/framework": "~5.7.13|~5.8",
"spatie/eloquent-sortable": "^3.4",
"spatie/laravel-translatable": "^3.0"
"php": "^7.2",
"laravel/framework": "~5.8",
"spatie/eloquent-sortable": "^3.5",
"spatie/laravel-translatable": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4|^8.0",
"orchestra/testbench": "~3.7.0|~3.8.0"
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "~3.8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 0 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use DB;
use Dotenv\Dotenv;
use Dotenv\Loader;
use Spatie\Tags\TagsServiceProvider;
use Illuminate\Database\Schema\Blueprint;
use Orchestra\Testbench\TestCase as Orchestra;
Expand All @@ -23,7 +22,6 @@ protected function getPackageProviders($app)
{
return [
TagsServiceProvider::class,
TranslatableServiceProvider::class,
];
}

Expand Down

0 comments on commit 20ca99d

Please sign in to comment.