hsuan1117/laravel-hasher-ntlm

NTLM Hash for Laravel

Maintainers

Package info

github.com/hsuan1117/laravel-hasher-ntlm

pkg:composer/hsuan1117/laravel-hasher-ntlm

Statistics

Installs: 240

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.2 2025-05-03 15:19 UTC

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',
];

References