users.conf.php.example 575 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * GitPHP User config file
  4. *
  5. * Copy this example file to config/users.conf.php
  6. *
  7. * @author Christopher Han <xiphux@gmail.com>
  8. * @copyright Copyright (c) 2012 Christopher Han
  9. * @package GitPHP
  10. * @subpackage Config
  11. */
  12. /*
  13. * gitphp_users
  14. *
  15. * An array of users
  16. * Each entry in the array is an array of key value pairs:
  17. * username: the user's login username
  18. * password: the user's password
  19. */
  20. /*
  21. $gitphp_users = array(
  22. array(
  23. 'username' => 'user1',
  24. 'password' => 'password1'
  25. ),
  26. array(
  27. 'username' => 'user2',
  28. 'password' => 'password2'
  29. )
  30. );
  31. */