Level 122
what error? Go on, give us a clue!
2 likes
Hello all! When I was writing password rules for my API, I encountered an issue where the rules worked when deployed to Ubuntu 24.04. On MacOS (M1), I got an error. After testing, it turned out there was an error in the method uncompromised(). Has anyone encountered this issue?
The project was deployed five times on each machine (without Docker, PHP 8.4).
Password::defaults(static function () {
return Password::min(8)
->max(16)
->mixedCase()
->letters()
->numbers()
->symbols()
->uncompromised();
Please or to participate in this conversation.