From e41b8d6ff58879bf7f3f9a641723c404ac8c0ed3 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Wed, 12 Aug 2026 15:12:26 -0400 Subject: [PATCH] extend \Dotenv\Dotenv --- composer.json | 9 ++++++++- src/Potter/Environment/Environment.php | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 021a4fc..159b281 100644 --- a/composer.json +++ b/composer.json @@ -14,5 +14,12 @@ } ], "minimum-stability": "stable", - "require": {} + "require": { + "graham-campbell/result-type": ">=1.1.4", + "phpoption/phpoption": ">=1.9.5", + "symfony/polyfill-ctype": ">=1.37.0", + "symfony/polyfill-mbstring": ">=1.38.2", + "symfony/polyfill-php80": ">=1.37.0", + "vlucas/phpdotenv": ">=5.6.4" + } } diff --git a/src/Potter/Environment/Environment.php b/src/Potter/Environment/Environment.php index ab065d1..388f081 100644 --- a/src/Potter/Environment/Environment.php +++ b/src/Potter/Environment/Environment.php @@ -5,4 +5,5 @@ declare(strict_types=1); namespace Potter\Environment; final class Environment + extends \Dotenv\Dotenv { }