marko / hashing
Password hashing and verification for Marko Framework
0.1.0
2026-03-25 17:53 UTC
Requires
- php: ^8.5
- marko/config: 0.1.0
- marko/core: 0.1.0
Requires (Dev)
- marko/testing: 0.1.0
- pestphp/pest: ^4.0
This package is auto-updated.
Last update: 2026-03-30 14:09:43 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