We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f51d738 commit bc2a4b0Copy full SHA for bc2a4b0
CHANGELOG.md
@@ -29,3 +29,23 @@ array(2) {
29
30
- **Remove deleted variables**
31
- This includes removing deleted environment variables from `$_SERVER`, `$_ENV`, and `getenv()`.
32
+
33
+## v1.0.2
34
35
+### Changes
36
+- Remove env variables manually set process.
37
+- Dotenv now accept 2 parameters, `array|string` **$file** & `string` **$path**
38
+- Dotenv will load default defined `env` files if user pass nothing to $file
39
+```php
40
+// Change method name
41
42
+// from
43
+$dotenv->getInGroup('APP');
44
+// to
45
+$dotenv->group('APP');
46
47
48
+$dotenv->restart();
49
50
+$dotenv->reload(); // Reload no longer accept default values
51
+```
0 commit comments