Skip to content

v3.1.1

Choose a tag to compare

@unclegcb unclegcb released this 04 Mar 23:50

What's Changed

  • Allow phpdotenv to update. #70

Sites using the old syntax will need to update:

Old:

  $dotenv = new Dotenv\Dotenv(__DIR__ . '/../../../');
  $dotenv->overload();

New:

  $dotenv = Dotenv\Dotenv::createUnsafeImmutable(__DIR__ . '/../../../');
  $dotenv->safeLoad();