From b258382958915729d5b449e0e7b4458652b1f925 Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Sat, 28 Nov 2020 14:20:13 -0600 Subject: [PATCH 1/7] Update to support PHP 8 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0d182eb..98bddeb 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 ae8b83c39d1070ae335572da20d0921c76c996a7 Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Thu, 10 Feb 2022 09:49:43 -0600 Subject: [PATCH 2/7] Update to 9 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 98bddeb..9fe5ea6 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^7.1 || ^8.0", - "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" + "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", From a7be74f3e7a89677483910e50369d4c8f308ca3c Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Tue, 14 Feb 2023 11:35:23 -0600 Subject: [PATCH 3/7] Test --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9fe5ea6..9ca8e77 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,7 @@ } ], "require": { - "php": "^7.1 || ^8.0", - "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0" + "php": "^7.1 || ^8.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", From e51afff05b8ffcfd3faae6f15ede2c3dadb70dc8 Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Tue, 14 Feb 2023 11:52:46 -0600 Subject: [PATCH 4/7] Test --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9ca8e77..9fe5ea6 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,8 @@ } ], "require": { - "php": "^7.1 || ^8.0" + "php": "^7.1 || ^8.0", + "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", From e6f1bdca7eb1fe1bf61e8faff0517be7ef0733c8 Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Sun, 26 Feb 2023 12:21:19 -0600 Subject: [PATCH 5/7] Test --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9fe5ea6..ad7295b 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,7 @@ } ], "require": { - "php": "^7.1 || ^8.0", - "illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0" + "php": "^8.2" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", From 89b4227889647764402991967e112d39c45208bb Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Fri, 19 May 2023 14:20:14 -0500 Subject: [PATCH 6/7] Test --- src/helpers.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/helpers.php b/src/helpers.php index 70a081b..ecf3686 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -28,3 +28,17 @@ function credentials(string $key, $default = null) } } + +if (! function_exists('config_path')) { + /** + * Get the configuration path. + * + * @param string $path + * @return string + */ + function config_path($path = '') + { + return app()->basePath($path); + } + +} From ef5237acbad51eea76fde10972b6174ee10b8b1b Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Sat, 20 May 2023 05:06:18 -0500 Subject: [PATCH 7/7] Test --- src/helpers.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/helpers.php b/src/helpers.php index ecf3686..70a081b 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -28,17 +28,3 @@ function credentials(string $key, $default = null) } } - -if (! function_exists('config_path')) { - /** - * Get the configuration path. - * - * @param string $path - * @return string - */ - function config_path($path = '') - { - return app()->basePath($path); - } - -}