From 4d4ad57408c8777f1e53d6c9a7260ceb7ac11c9d Mon Sep 17 00:00:00 2001 From: Ruben Van Assche Date: Wed, 27 Feb 2019 15:04:41 +0100 Subject: [PATCH 1/3] drop support for L5.7 and below, PHP 7.1 and PHPUnit 7 --- .travis.yml | 1 - CHANGELOG.md | 3 +++ composer.json | 8 ++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ac208d1..bd1d94e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 7.1 - 7.2 - 7.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 182bdaa..c33cb1d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to `laravel-feed` will be documented in this file +## 2.2.0 - 2019-02-27 +- drop support for L5.7 and below, PHP 7.1 and PHPUnit 7 + ## 2.1.2 - 2019-02-27 - Added: Laravel 5.8 compatibility diff --git a/composer.json b/composer.json index 28d302e..203a578 100644 --- a/composer.json +++ b/composer.json @@ -30,13 +30,13 @@ } ], "require": { - "php" : "^7.1", - "laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0", + "php" : "^7.2", + "laravel/framework": "~5.8.0", "nesbot/carbon": "^1.0" }, "require-dev": { - "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0", - "phpunit/phpunit": "^6.0|^7.0", + "orchestra/testbench": "~3.8.0", + "phpunit/phpunit": "^8.0", "spatie/phpunit-snapshot-assertions": "^1.0" }, "autoload": { From 055ecf7f8ffa55cb84b020d0dcea54415b06aa32 Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Wed, 27 Feb 2019 14:04:50 +0000 Subject: [PATCH 2/3] Apply fixes from StyleCI --- src/Http/FeedController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/FeedController.php b/src/Http/FeedController.php index b06cd57..3b5643d 100644 --- a/src/Http/FeedController.php +++ b/src/Http/FeedController.php @@ -2,8 +2,8 @@ namespace Spatie\Feed\Http; -use Illuminate\Support\Str; use Spatie\Feed\Feed; +use Illuminate\Support\Str; class FeedController { From 79db37af8eba41a94bf1ec6b3f608dd4d0ec7a30 Mon Sep 17 00:00:00 2001 From: Ruben Van Assche Date: Wed, 27 Feb 2019 15:48:56 +0100 Subject: [PATCH 3/3] Bump phpunit-snapshot-assertions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 203a578..8739d4e 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,7 @@ "require-dev": { "orchestra/testbench": "~3.8.0", "phpunit/phpunit": "^8.0", - "spatie/phpunit-snapshot-assertions": "^1.0" + "spatie/phpunit-snapshot-assertions": "^2.0" }, "autoload": { "psr-4": {