From 0d5b7ca692bcfc27d2f34ac4b283da5ee4962d42 Mon Sep 17 00:00:00 2001 From: Felix Schulze <8378750+schulzefelix@users.noreply.github.com> Date: Sun, 12 Apr 2020 23:42:15 +0200 Subject: [PATCH] Laravel 7 Support --- .gitignore | 1 + .travis.yml | 3 ++- CHANGELOG.md | 6 +++++- composer.json | 10 +++++----- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index f02a2f8..b6285d6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ build composer.lock docs vendor +.phpunit.result.cache diff --git a/.travis.yml b/.travis.yml index 6f01948..0cb0c6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: php php: - 7.2 - 7.3 + - 7.4 env: matrix: @@ -16,4 +17,4 @@ script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: - - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover \ No newline at end of file + - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d26371..d381aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All Notable changes to `laravel-search-console` will be documented in this file. +## [1.4.0] - 2020-04-12 + - Add Compatibility With Laravel 7 + - Drop support for Laravel 6 + - Minimum PHP 7.2.5 ## [1.3.0] - 2019-09-15 - Add Compatibility With Laravel 6 @@ -36,4 +40,4 @@ All Notable changes to `laravel-search-console` will be documented in this file. - dropped support for anything lower than Laravel 5.4 ## [0.0.1] - 2017-07-27 -- Initial Beta Release \ No newline at end of file +- Initial Beta Release diff --git a/composer.json b/composer.json index 9282743..49eb9ca 100644 --- a/composer.json +++ b/composer.json @@ -20,15 +20,15 @@ } ], "require": { - "php": "^7.2", + "php": "^7.2.5", "google/apiclient": "^2.0", - "illuminate/support": "^6.0", + "illuminate/support": "^7.0", "symfony/cache": "^4.3|^5.0" }, "require-dev": { - "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0", - "phpunit/phpunit" : "^8.0" + "mockery/mockery": "^1.3", + "orchestra/testbench": "^4.0|^5.0", + "phpunit/phpunit" : "^8.0|^9.0" }, "autoload": { "psr-4": {