events/Tests/Functional/Fixtures/BeUsers.php
Daniel Siepmann 81065f5c67
BREAKING: TYPO3 v12 support (#44)
* Migrated all fixtures to PHP.
* Removed version specific adjustments.
2023-11-27 10:04:42 +01:00

20 lines
406 B
PHP

<?php
declare(strict_types=1);
return [
'be_users' => [
[
'uid' => 1,
'pid' => 0,
'tstamp' => 1366642540,
'username' => 'admin',
'password' => '$1$tCrlLajZ$C0sikFQQ3SWaFAZ1Me0Z/1', // password
'admin' => 1,
'disable' => 0,
'crdate' => 1366642540,
'deleted' => 0,
],
],
];