<?php

return [
    // One of "bcrypt", "argon", "argon2id"
    'driver' => 'bcrypt',

    'bcrypt' => [
        'rounds' => env('BCRYPT_ROUNDS', 10),
    ],


    'argon' => [
        'memory' => 65536,
        'threads' => 1,
        'time' => 4,
    ],
];