From 7e79a42caff959e0622f865429da7c0802b2525e Mon Sep 17 00:00:00 2001 From: Maicol Date: Mon, 21 Dec 2020 17:07:18 +0100 Subject: [PATCH 1/3] Allow newer PHP versions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f9757d5..7e17b17 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.2.5", + "php": ">=7.2.5", "illuminate/support": "^7.0|^8.0", "illuminate/filesystem": "^7.0|^8.0", "doctrine/annotations": "~1.2", From 4a330069b5b575cd29a67a13463cfe30c59e401c Mon Sep 17 00:00:00 2001 From: Maicol Date: Mon, 21 Dec 2020 17:13:45 +0100 Subject: [PATCH 2/3] Added PHP 8 test --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index ba0bec3..0e9b6ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ matrix: env: setup=stable - php: 7.4 env: setup=stable + - php: 8.0 + env: setup=stable install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi From df40e1af4ad2e21473ef21c8cb6155631909fe38 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 30 Apr 2021 21:20:23 +1000 Subject: [PATCH 3/3] Update composer.json Better method of specifying versioning --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7e17b17..e32c9d2 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": ">=7.2.5", + "php": "^7.2.5|^8.0", "illuminate/support": "^7.0|^8.0", "illuminate/filesystem": "^7.0|^8.0", "doctrine/annotations": "~1.2",