git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@8 77cfc57b-8ef4-1849-9df6-4a38aa5da120
20 lines
605 B
PHP
20 lines
605 B
PHP
<?php
|
|
return array(
|
|
'user1' => array(
|
|
'id' => '1',
|
|
'email' => 'test1@notanaddress.com',
|
|
'name' => 'Fulanito de Tal',
|
|
'username' => 'Test_User_One',
|
|
'password' => 'MD5(`test1`)',
|
|
'last_login_time' => NULL,
|
|
),
|
|
'user2' => array(
|
|
'id' => '2',
|
|
'email' => 'test2@notanaddress.com',
|
|
'name' => 'Menganito de Tal',
|
|
'username' => 'Test_User_Two',
|
|
'password' => 'MD5(`test2`)',
|
|
'last_login_time' => NULL,
|
|
),
|
|
);
|
|
?>
|