diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 428e582..80ba950 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,8 +9,8 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4] - laravel: [5.8.*, 6.*] + php: [7.3, 7.4] + laravel: [6.*, 7.*] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index d6fe41e..26b664a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ All the notable changes to the Laravel Natural Language package are documented in this file: +## v4.0.0 (03-03-2020) +- Added Laravel v7.x support. +- Dropped PHP v7.2 support, now PHP v7.3 is the minimum requirement. + ## v3.0.1 (14-01-2020) - Added Github Actions workflow diff --git a/composer.json b/composer.json index 46557ed..f7c2bcb 100644 --- a/composer.json +++ b/composer.json @@ -26,13 +26,13 @@ } }, "require": { - "php": "^7.2", + "php": "^7.3", "google/cloud-language": "^0.20.0", - "illuminate/support": "5.8.*|6.*" + "illuminate/support": "6.*|7.*" }, "require-dev": { "mockery/mockery": "^1.1", - "orchestra/testbench" : "~4.0", + "orchestra/testbench" : "4.*|5.*", "phpunit/phpunit": "^8.0" }, "extra": {