Releases: zepgram/magento-dotenv
Releases · zepgram/magento-dotenv
Release 2.0.3
Release 2.0.2
- Re-introducing self creation of .env file to avoid issue on autoload at startup
Release 2.0.1
- Removed auto creation of
.env
file if it doesn't exist mainly for performance reason, but also because of the introduction of $envFilePath argument - Replaced
file_exists
byis_file
method to get better performance - Add the possibility to set env file path as suggested with issue #2 with optional argument
$envFilePath
public static function get(
bool $usePutEnv = false,
string $envKey = self::ENV_KEY,
string $debugKey = self::DEBUG_KEY,
string $envFilePath = ''
)
Release 2.0.0
- increase minimum release version to symfony dotenv 6.0
- adapt requirements to accept php version >= 8.0.2
- improve code quality standard
- resolve issue #1
Version 1.0.1
- Fix issue with magerun who was trying to create dotenv.php and .env file in his own root directory
version 1.0.0
- Adaptation to dotenv version 5.1.x
- File "app/dotenv.php" can be overridden (composer mapping has been removed)
- Resolved issue with Magento "BP" constant: using composer reflection class instead