From 45e267c8c1156e74bd02f262297f34f04e9833e6 Mon Sep 17 00:00:00 2001 From: Travis Elkins Date: Wed, 30 Dec 2020 22:41:53 +0100 Subject: [PATCH] Added PHP 8.0 support. --- .travis.yml | 1 + CHANGELOG.md | 4 ++++ composer.json | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e6056c0..b1e0dda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 7.2 - 7.3 - 7.4 + - 8.0 env: matrix: diff --git a/CHANGELOG.md b/CHANGELOG.md index 66ce50f..25dbf4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-api-responder` will be documented in this file +## 1.3.2 - 2020-12-30 + +- Add support for PHP 8.0 + ## 1.3.1 - 2020-09-11 - Add support for Laravel 8.0 diff --git a/composer.json b/composer.json index 2785099..83b0bfa 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.2.5", + "php": "^7.2.5 || ^8.0", "illuminate/contracts": "^6.0|^7.0|^8.0", "illuminate/database": "^6.0|^7.0|^8.0", "illuminate/http": "^6.0|^7.0|^8.0",