From 20ca99dbb81d2d23adb4e310f1c9c388dc0a0743 Mon Sep 17 00:00:00 2001 From: freek Date: Wed, 27 Feb 2019 14:34:47 +0100 Subject: [PATCH] wip --- .travis.yml | 1 - CHANGELOG.md | 5 +++++ composer.json | 12 ++++++------ tests/TestCase.php | 2 -- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 082ed93..e86592e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,6 @@ env: - COMPOSER_FLAGS="" php: - - 7.1 - 7.2 - 7.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index bcbc60a..6d3356e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/composer.json b/composer.json index abc2498..04df7d7 100644 --- a/composer.json +++ b/composer.json @@ -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": { diff --git a/tests/TestCase.php b/tests/TestCase.php index 4b11316..b5048b1 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -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; @@ -23,7 +22,6 @@ protected function getPackageProviders($app) { return [ TagsServiceProvider::class, - TranslatableServiceProvider::class, ]; }