PHP code example of safan-lab / auth

1. Go to this page and download the library: Download safan-lab/auth library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

safan-lab / auth example snippets


PHP > 5.4.0
gap-orm/gap >= 1.*


return [
    // Safan Framework default modules route
    'Safan'         => 'vendor/safan-lab/safan/Safan',
    'SafanResponse' => 'vendor/safan-lab/safan/SafanResponse',
    // Write created or installed modules route here ... e.g. 'FirstModule' => 'application/Modules/FirstModule'
    'GapOrm'         => 'vendor/gap-db/orm/GapOrm',
    'Authentication' => 'vendor/safan-lab/auth/Authentication',
];


'init' => [
    ...
    'auth' => [
        'class'  => 'Authentication\AuthManager',
        'method' => 'init',
        'params' => [
            'token'       => 'any_token',
            'driver'      => 'memcacheAuth',
            'crossDomain' => false
        ]
    ],
    ...
]