You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
568 B

9 years ago
9 years ago
  1. <?php
  2. class Config {
  3. public static $hostname = 'quill.dev';
  4. public static $base_url = 'http://quill.dev/';
  5. public static $gaid = '';
  6. public static $dbHost = '127.0.0.1';
  7. public static $dbName = 'quill';
  8. public static $dbUsername = 'quill';
  9. public static $dbPassword = '';
  10. public static $jwtSecret = 'xxx';
  11. public static $fbClientID = '';
  12. public static $fbClientSecret = '';
  13. public static $twitterClientID = '';
  14. public static $twitterClientSecret = '';
  15. public static $instagramClientID = '';
  16. public static $instagramClientSecret = '';
  17. }