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 87f9af7 commit 6eb84b0Copy full SHA for 6eb84b0
.gitignore
@@ -133,6 +133,7 @@ build
133
.env
134
.env.testing
135
.env.production
136
+!tests/fixtures/**/.env**
137
138
# MacOS folder mapper file
139
.DS_Store
tests/fixtures/.env
@@ -0,0 +1,8 @@
1
+ENV="production"
2
+APP_ENV="other"
3
+NUMBER_ENV="10"
4
+BOOLEAN_ENV="true"
5
+OBJECT_ENV="{"name":"Paulo"}"
6
+ENV_IN_ENV="${NUMBER_ENV}-${BOOLEAN_ENV}"
7
+ENV_IN_ENV_JSON="{ "maintainers": ${OBJECT_ENV} }"
8
+PRESET="false"
tests/fixtures/.env.testing
@@ -0,0 +1,2 @@
+ENV_TESTING="testing"
0 commit comments