marko / hashing
Password hashing and verification for Marko Framework
0.0.1
2026-03-25 17:53 UTC
Requires
- php: ^8.5
- marko/config: 0.0.1
- marko/core: 0.0.1
Requires (Dev)
- marko/testing: 0.0.1
- pestphp/pest: ^4.0
This package is auto-updated.
Last update: 2026-03-25 21:07:46 UTC
README
Password hashing and verification with configurable algorithms--hash passwords securely without worrying about algorithm details.
Installation
composer require marko/hashing
Quick Example
use Marko\Hashing\HashManager; $hash = $hashManager->hash('secret'); $hashManager->verify('secret', $hash); // true $hashManager->needsRehash($hash); // false (until config changes)
Documentation
Full usage, API reference, and examples: marko/hashing