diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3af1084..4947355 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - php: [7.4, 7.3] + php: [8.0, 7.4] laravel: [8.*, 7.*, 6.*] dependency-version: [prefer-lowest, prefer-stable] os: [ubuntu-latest] diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e87241..b9ee726 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-openprovider` will be documented in this file +## 0.8.0 - 2020-12-06 + +- Adding support for PHP 8.0, ditched PHP 7.2 and PHP 7.3 + ## 0.7.0 - 2020-09-18 - Adding support for Laravel 8 diff --git a/composer.json b/composer.json index 81433a5..a0e0246 100644 --- a/composer.json +++ b/composer.json @@ -4,13 +4,13 @@ "keywords": ["openprovider", "laravel"], "license": "MIT", "require": { - "php": "^7.2", + "php": "^8.0|^7.4", "laravel/framework": "^6.0|^7.0|^8.0", "spatie/array-to-xml": "^2.7", - "guzzlehttp/guzzle": "^6.3|^7.0.1" + "guzzlehttp/guzzle": "^6.3.1|^7.0.1" }, "require-dev": { - "phpunit/phpunit": "^7.5|^8.0|^9.0", + "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3", "orchestra/testbench": "^4.0|^5.0|^6.0" }, "autoload": {