- Add HVAC_Test_User_Factory class with: * User creation with specific roles * Multiple role support * Persona management system * Account cleanup integration - Create comprehensive test suite in HVAC_Test_User_Factory_Test.php - Update testing improvement plan documentation - Add implementation decisions to project memory bank - Restructure .gitignore with: * Whitelist approach for better file management * Explicit backup exclusions * Specific bin directory inclusions Part of the Account Management component from the testing framework improvement plan.
17 lines
1.1 KiB
PHP
17 lines
1.1 KiB
PHP
<?php
|
|
/**#@+
|
|
* Authentication Unique Keys and Salts.
|
|
*
|
|
* Change these to different unique phrases!
|
|
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
|
|
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
|
|
*
|
|
*/
|
|
define('AUTH_KEY', 'Dcemvf349q8r172rR9WDyX3DW2sQGCN1Y2xus8JP7gbXj5VnyIb81yeI0rMWdSsP');
|
|
define('SECURE_AUTH_KEY', 'tYMKzx41ihYJjN5DBuDXYThod05Kbg6Samx0WabiuSg0XfnV5EgxTX6vIAaKdnRu');
|
|
define('LOGGED_IN_KEY', 'vDy5CNivyfI08cnVQ81zDPatMe0NGVsc0yWSTJ7E93vzmKF0aWS3S7uGfcMwUHci');
|
|
define('NONCE_KEY', '38GyBJmeeAEGhAePNfVPShcwAQpi8whpfhIFvcP6o54SrRh2Tjx0MzMTvMS5h935');
|
|
define('AUTH_SALT', 'Y7J03adaoUGM3p0xyBwrVQvHXTUwAPRvvfIDKD2v11cgYzg97KSR3LQVdXb64NHr');
|
|
define('SECURE_AUTH_SALT', 'SXma4XDLgB2xBGPXoLfoqT0bba5q3NPXKoh8eneeB5d7UpPe35gFzDWeDXAJF6g2');
|
|
define('LOGGED_IN_SALT', 'bpS0zBVz6amsMGmMUexHrKfDmFWzKbTx6VCNJFYzpPUss4md3wL6UH7756H9cbdR');
|
|
define('NONCE_SALT', 'A7aWFyrXEb4ALQzwmv0Ejf2nHA42vzsngaFoDgNaUvqVEoHaNFzQjb02rCCd0bm0');
|