Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
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.

52 lines
1.5 KiB

  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Hash Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | This option controls the default hash driver that will be used to hash
  9. | passwords for your application. By default, the bcrypt algorithm is
  10. | used; however, you remain free to modify this option if you wish.
  11. |
  12. | Supported: "bcrypt", "argon", "argon2id"
  13. |
  14. */
  15. 'driver' => 'bcrypt',
  16. /*
  17. |--------------------------------------------------------------------------
  18. | Bcrypt Options
  19. |--------------------------------------------------------------------------
  20. |
  21. | Here you may specify the configuration options that should be used when
  22. | passwords are hashed using the Bcrypt algorithm. This will allow you
  23. | to control the amount of time it takes to hash the given password.
  24. |
  25. */
  26. 'bcrypt' => [
  27. 'rounds' => env('BCRYPT_ROUNDS', 10),
  28. ],
  29. /*
  30. |--------------------------------------------------------------------------
  31. | Argon Options
  32. |--------------------------------------------------------------------------
  33. |
  34. | Here you may specify the configuration options that should be used when
  35. | passwords are hashed using the Argon algorithm. These will allow you
  36. | to control the amount of time it takes to hash the given password.
  37. |
  38. */
  39. 'argon' => [
  40. 'memory' => 1024,
  41. 'threads' => 2,
  42. 'time' => 2,
  43. ],
  44. ];