19 lines
384 B
PHP
19 lines
384 B
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
* OSB Configuration - Authentication
|
||
|
*
|
||
|
* @package OSB
|
||
|
* @subpackage Authentication
|
||
|
* @category Configuration
|
||
|
* @author Deon George
|
||
|
* @copyright (c) 2010 Open Source Billing
|
||
|
* @license http://dev.osbill.net/license.html
|
||
|
*/
|
||
|
|
||
|
return array(
|
||
|
'driver' => 'OSB',
|
||
|
'hash_method' => 'md5',
|
||
|
);
|
||
|
?>
|