From 637ba026f9b3811106e464292731fa4fb97f18e0 Mon Sep 17 00:00:00 2001 From: domkrm <10560668+domkrm@users.noreply.github.com> Date: Mon, 14 Mar 2022 20:40:39 +0100 Subject: [PATCH] Add support for PHP 8 and Laravel 9 --- composer.json | 10 +++++----- config/letterxpress.php | 5 ----- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 9432158..bd45f6b 100644 --- a/composer.json +++ b/composer.json @@ -14,11 +14,11 @@ } ], "require": { - "php": "^7.2", - "illuminate/config": "^7.0|^8.0", - "illuminate/contracts": "^7.0|^8.0", - "illuminate/http": "^7.0|^8.0", - "illuminate/support": "^7.0|^8.0" + "php": "^7.2|^8.0", + "illuminate/config": "^7.0|^8.0|^9.0", + "illuminate/contracts": "^7.0|^8.0|^9.0", + "illuminate/http": "^7.0|^8.0|^9.0", + "illuminate/support": "^7.0|^8.0|^9.0" }, "autoload": { "psr-4": { diff --git a/config/letterxpress.php b/config/letterxpress.php index d829eb2..c58fcf5 100644 --- a/config/letterxpress.php +++ b/config/letterxpress.php @@ -23,9 +23,6 @@ | | This is the username of your LetterXpress account. | - | Production: https://api.letterxpress.de/v1/ - | Sandbox: https://sandbox.letterxpress.de/v1/ - | */ 'api_user' => env('LETTER_XPRESS_API_USER'), @@ -37,8 +34,6 @@ | | This is your personal API key. | - | Refer to: https://www.letterxpress.de/account/api - | */ 'api_key' => env('LETTER_XPRESS_API_KEY'),