. */ namespace App\LobbySIO\Config; /** * Configuration registry for the application * Customize this file to your environment. Directory paths should * end in slash and be absolute. * * @author josh.north */ class Registry { const DIRPATH = '/var/www/html/lsio/', // Filesystem base dir DB_DRVR = 'mysql', // PDO Driver DB_HOST = 'localhost', // DB Host DB_USER = 'lsio_user', // DB Username DB_PASS = 'yoursecret', // DB Password DB_NAME = 'lsio', // DB Name DB_PRFX = 'lsio_', // DB table prefix ORGANIZATION = 'Widgets, Inc', // Organization name DEFAULTLANGUAGE = 'en', // Default language - make sure a translation file exists ROWSPERPAGE = '10', // Rows per page on tables (does not include reports) MINPASS = '8', // Minimum password length DEFAULTTZ = 'America/New_York', // DEFAULT TIME ZONE HIDEFOOTER = 'false', // HIDE TIMESTAMP FOOTER AUTHMETHOD = 'INTERNAL', // Auth users using INTERNAL or SAML AUTHIDP = 'default-sp', // Identity Provider if using SAML ENCKEY = 'def00000231550b3ca99ed79ffe1010c5555d9ff9f6b3d0844c65dd5705aa72da77d427c76a50c7a19e52e5e3c38137f2db2d95a4d845c85b691e384d9ba6ee6e706baac', // CHANGE ME BEFORE USING! Encryption key - 136 char ascii encryption key - generate // online or via encrypt-test.php. WARNING! Changing after in production WILL BREAK YOUR DATA!!! CARNUMREQD = 'false' // Disable Carnum fields for UK ;}