Skip to content

Commit

Permalink
Add support for PHP 8 and Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
domkrm committed Mar 14, 2022
1 parent 1de2440 commit 637ba02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
5 changes: 0 additions & 5 deletions config/letterxpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand All @@ -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'),
Expand Down

0 comments on commit 637ba02

Please sign in to comment.