hsuan1117 / laravel-hasher-ntlm
NTLM Hash for Laravel
1.0.2
2025-05-03 15:19 UTC
Requires (Dev)
- orchestra/testbench: ^10.2
This package is auto-updated.
Last update: 2026-03-30 03:24:42 UTC
README
The package provides NTLM hashing for Laravel.
Installation
composer require hsuan1117/laravel-hasher-ntlm
Configuration
You must publish the configuration file to modify default hashing settings.
php artisan config:publish hashing
After publishing, you can find the configuration file at config/hashing.php. You can set the default driver to ntlm in the configuration file.
return [ 'driver' => 'ntlm', ];