From f774df6874a6cd148f4cfb679f511e7cfbf7e6ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=87al=C4=B1k?= Date: Wed, 14 Apr 2021 00:20:38 +0300 Subject: [PATCH 1/3] Updated php version dependency. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0d182eb..ad3e951 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1", + "php": "^7.1|^8.0", "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" }, "require-dev": { From 14f7070ef2fe2da789a145e5830c264ec794da20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=87al=C4=B1k?= Date: Wed, 14 Apr 2021 01:01:14 +0300 Subject: [PATCH 2/3] Fixed editor config was not loading. --- src/EditCredentialsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EditCredentialsCommand.php b/src/EditCredentialsCommand.php index efb7aad..f26fe66 100644 --- a/src/EditCredentialsCommand.php +++ b/src/EditCredentialsCommand.php @@ -39,7 +39,7 @@ public function handle(Credentials $credentials) fwrite($handle, json_encode($decrypted, JSON_PRETTY_PRINT | JSON_FORCE_OBJECT)); - $editor = config('credential.editor', 'vi'); + $editor = config('credentials.editor', 'vi'); $process = new Process([$editor, $meta['uri']]); From 2417bbb301d5db7815840af04bb1f62fb9c1a55f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=87al=C4=B1k?= Date: Wed, 14 Apr 2021 04:03:59 +0300 Subject: [PATCH 3/3] Added PHP 8.0 to travis. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 7a96344..52e5cb6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ php: - 7.2 - 7.3 - 7.4 + - 8.0 env: matrix: