初始化仓库
This commit is contained in:
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.empty.converted.yml
vendored
Normal file
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.empty.converted.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
{ }
|
||||
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json
vendored
Normal file
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"app":"name","db":{"host":"localhost","user":"sample_user","pass":"sample_pass","port":"3306"},"other":{"multi":{"deep":{"nested":"config_value"}}}}
|
||||
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json.converted.php
vendored
Normal file
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json.converted.php
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'app' => 'name',
|
||||
'db' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'user' => 'sample_user',
|
||||
'pass' => 'sample_pass',
|
||||
'port' => '3306',
|
||||
),
|
||||
'other' =>
|
||||
array (
|
||||
'multi' =>
|
||||
array (
|
||||
'deep' =>
|
||||
array (
|
||||
'nested' => 'config_value',
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json.converted.yml
vendored
Normal file
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.json.converted.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
app: name
|
||||
db:
|
||||
host: localhost
|
||||
user: sample_user
|
||||
pass: sample_pass
|
||||
port: '3306'
|
||||
other:
|
||||
multi: { deep: { nested: config_value } }
|
||||
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php
vendored
Normal file
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'app' => 'app_name',
|
||||
'db' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'user' => 'sample_user',
|
||||
'pass' => 'sample_pass',
|
||||
'port' => 3306,
|
||||
),
|
||||
'other' =>
|
||||
array (
|
||||
'multi' =>
|
||||
array (
|
||||
'deep' =>
|
||||
array (
|
||||
'nested' => 'config_value',
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php.converted.json
vendored
Normal file
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php.converted.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"app":"app_name","db":{"host":"localhost","user":"sample_user","pass":"sample_pass","port":3306},"other":{"multi":{"deep":{"nested":"config_value"}}}}
|
||||
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php.converted.yml
vendored
Normal file
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.php.converted.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
app: app_name
|
||||
db:
|
||||
host: localhost
|
||||
user: sample_user
|
||||
pass: sample_pass
|
||||
port: 3306
|
||||
other:
|
||||
multi: { deep: { nested: config_value } }
|
||||
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml
vendored
Normal file
8
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
app: name
|
||||
db:
|
||||
host: localhost
|
||||
user: sample_user
|
||||
pass: sample_pass
|
||||
port: 3306
|
||||
other:
|
||||
multi: { deep: { nested: config_value } }
|
||||
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml.converted.json
vendored
Normal file
1
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml.converted.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"app":"name","db":{"host":"localhost","user":"sample_user","pass":"sample_pass","port":3306},"other":{"multi":{"deep":{"nested":"config_value"}}}}
|
||||
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml.converted.php
vendored
Normal file
23
vendor/clagiordano/weblibs-configmanager/testsdata/sample_config_data.yml.converted.php
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'app' => 'name',
|
||||
'db' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'user' => 'sample_user',
|
||||
'pass' => 'sample_pass',
|
||||
'port' => 3306,
|
||||
),
|
||||
'other' =>
|
||||
array (
|
||||
'multi' =>
|
||||
array (
|
||||
'deep' =>
|
||||
array (
|
||||
'nested' => 'config_value',
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user