Mischa Braam

Results 36 comments of Mischa Braam

Did you `valet park` in `/Users/rkent05/Projects`? You won't be needing to create a link if the URL you want to use is the same as your directory name inside your...

`doctrine/annotations` currently is a dev requirement. Maybe this should be a non-dev requirement? ``` > bin/console Symfony 6.4.1 (env: dev, debug: true) #StandWithUkraine https://sf.to/ukraine Usage: command [options] [arguments] Options: -h,...

Hi, that would be validation **after** you already created a random password. How about you try to do it **before**? You have your flags in `Generator.php` right? You could try...

@tomasfejfar you could do it yourself with existing code of this library. I needed this to and solved it like this. ``` $password = $generator->generateString(3, Generator::CHAR_UPPER). $generator->generateString(4, Generator::CHAR_LOWER). $generator->generateString(4, Generator::CHAR_DIGITS)....