Skip to content

Releases: zepgram/magento-dotenv

Release 2.0.3

12 Feb 12:24
93c7b7c
Compare
Choose a tag to compare

Fix issue when src file doesn't exist

Release 2.0.2

12 Jun 14:17
Compare
Choose a tag to compare
  • Re-introducing self creation of .env file to avoid issue on autoload at startup

Release 2.0.1

12 Jun 11:08
Compare
Choose a tag to compare
  • 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 by is_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

01 Apr 18:28
Compare
Choose a tag to compare
  • 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

02 Sep 08:03
Compare
Choose a tag to compare
  • Fix issue with magerun who was trying to create dotenv.php and .env file in his own root directory

version 1.0.0

26 Aug 13:17
Compare
Choose a tag to compare
  • 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