My first commit of codes
This commit is contained in:
11
vendor/vlucas/phpdotenv/tests/fixtures/commented.env
vendored
Normal file
11
vendor/vlucas/phpdotenv/tests/fixtures/commented.env
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# This is a comment
|
||||
CFOO=bar
|
||||
#CBAR=baz
|
||||
#CZOO=goo # a comment on a commented row
|
||||
CSPACED=with spaces # this is a comment
|
||||
CQUOTES="a value with a # character" # this is a comment
|
||||
CQUOTESWITHQUOTE="a value with a # character & a quote \" character inside quotes" # " this is a comment
|
||||
|
||||
CNULL=
|
||||
|
||||
## this is a comment ##
|
||||
5
vendor/vlucas/phpdotenv/tests/fixtures/exported.env
vendored
Normal file
5
vendor/vlucas/phpdotenv/tests/fixtures/exported.env
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export EFOO='bar'
|
||||
export EBAR='baz'
|
||||
export ESPACED='with spaces'
|
||||
|
||||
export ENULL=''
|
||||
5
vendor/vlucas/phpdotenv/tests/fixtures/nested.env
vendored
Normal file
5
vendor/vlucas/phpdotenv/tests/fixtures/nested.env
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
NVAR1='Hello'
|
||||
NVAR2='World!'
|
||||
NVAR3='{$NVAR1} {$NVAR2}'
|
||||
NVAR4='${NVAR1} ${NVAR2}'
|
||||
NVAR5='$NVAR1 {NVAR2}'
|
||||
9
vendor/vlucas/phpdotenv/tests/fixtures/quoted.env
vendored
Normal file
9
vendor/vlucas/phpdotenv/tests/fixtures/quoted.env
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
QFOO='bar'
|
||||
QBAR='baz'
|
||||
QSPACED='with spaces'
|
||||
QEQUALS='pgsql:host=localhost;dbname=test'
|
||||
|
||||
QNULL=''
|
||||
QWHITESPACE = 'no space'
|
||||
|
||||
QESCAPED='test some escaped characters like a quote (\') or maybe a backslash (\\)'
|
||||
5
vendor/vlucas/phpdotenv/tests/fixtures/specialchars.env
vendored
Normal file
5
vendor/vlucas/phpdotenv/tests/fixtures/specialchars.env
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
SPVAR1='$a6^C7k%zs+e^.jvjXk'
|
||||
SPVAR2='?BUty3koaV3%GA*hMAwH}B'
|
||||
SPVAR3='jdgEB4{QgEC]HL))&GcXxokB+wqoN+j>xkV7K?m$r'
|
||||
SPVAR4='22222:22#2^{'
|
||||
SPVAR5=test some escaped characters like a quote \' or maybe a backslash \\ # not escaped
|
||||
Reference in New Issue
Block a user