Daniel Platt
                                            Daniel Platt
                                        
                                    My gut says it's because PHP Unit is a newer version. ``` Fatal error: Class 'PHPUnit_Framework_TestCase' ``` I believe it changed to \PHPUnit\Framework\TestCase
This issue maybe related to #688
Current version of assetic: ``` "name": "kriswallsmith/assetic", "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/kriswallsmith/assetic.git", "reference": "b20efe38845d20458702f97f3ff625d80805897b" }, ``` Previous version: ``` "name": "kriswallsmith/assetic", "version": "v1.1.2", "source": { "type": "git",...
I'm not sure what @symbols contains, but you want to set it like this. ``` $generator->setParameter(self::PARAMETER_SYMBOLS, '!@$%^&*(),.?/[]{}-=_+') ``` You can find more information in #21
lol. I should have asked, "where".
My question is trying to get insight into how/where people are using my library. which frameworks, sites, anything really. It's easier to keep going if you know that your software...
I'd recommend using the library directly. As you've seen the bundle doesn't do much about from the forms. It'll also give you a lot more control.
@rafaelbernard That's good suggestion. `AVOID_SIMILAR` is only working on a very limited set of characters. e.g. l, I, 1.
How do you see this functioning? I will assume it's for the RequirementPasswordGenerator. Which would be valid for you suggestion option? `Pasword123` or `Paswsord123123`
I'm happy to implement "No Repeat" and "No consecutive", as I understand them. Can you tell me more about "Must contain"? It feels like something RequirementPasswordGenerator already has. e.g. must...