forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
44 lines (35 loc) · 1.15 KB
/
Copy path.env
File metadata and controls
44 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
FOO=bar
BAR=baz
SPACED="with spaces"
NULL=
SimpleConfig.onedeep=baz
SimpleConfig.default.name=ci4
# Use underscore as separator
SimpleConfig_simple_name=complex
## for environment override testing
SimpleConfig.alpha=pow
SimpleConfig.charliewrong=null
# Use underscore as separator
SimpleConfig_notthere=missing
simpleconfig.delta=hubbahubba
simpleconfig.foxtrot="true"
# Use underscore as separator
simpleconfig_dessert="banana"
# Properity name with undersocre
SimpleConfig.onedeep_value=bar
# Array properity name with undersocre and key name with undersocre
SimpleConfig.one_deep.under_deep=foo
bravo=kazaam
simpleconfig.default.something=else
simpleconfig.name = ci123
SimpleConfig.crew.captain = Malcolm
SimpleConfig.crew.pilot = Wash
SimpleConfig.crew.comms = true
SimpleConfig.crew.doctor = false
# The default value's type in the Config class is float, so it will be converted to float
SimpleConfig.float = 0.0
# The default value's type in the Config class is int, so it will be converted to int
SimpleConfig.int = 999
SimpleConfig.password = 123456
# The property type in the Config class is ?int, so it will be converted to int by PHP
SimpleConfig.size=20