├── .gitignore ├── .travis.yml ├── Command ├── CheckPasswordCommand.php └── FileToBaseCommand.php ├── DataFiles ├── Pass100k.txt └── Pass1M.txt ├── DependencyInjection ├── Configuration.php ├── PassSecurityExtension.php └── Services │ ├── DataBaseReader.php │ ├── FileReader.php │ ├── InterfaceReader.php │ └── PassSecurity.php ├── Entity ├── InterfacePassSecurityEntity.php └── PassSecurityBase.php ├── LICENSE ├── PassSecurityBundle.php ├── README.md ├── Resources └── config │ └── services.yml ├── Tests ├── DependencyInjection │ ├── NidhognitDependencyInjectionTest.php │ └── Services │ │ └── FileReaderTest.php └── bootstrap.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | phpunit.xml 4 | vendor/ 5 | app/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/CheckPasswordCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Command/CheckPasswordCommand.php -------------------------------------------------------------------------------- /Command/FileToBaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Command/FileToBaseCommand.php -------------------------------------------------------------------------------- /DataFiles/Pass100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DataFiles/Pass100k.txt -------------------------------------------------------------------------------- /DataFiles/Pass1M.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DataFiles/Pass1M.txt -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/PassSecurityExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/PassSecurityExtension.php -------------------------------------------------------------------------------- /DependencyInjection/Services/DataBaseReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/Services/DataBaseReader.php -------------------------------------------------------------------------------- /DependencyInjection/Services/FileReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/Services/FileReader.php -------------------------------------------------------------------------------- /DependencyInjection/Services/InterfaceReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/Services/InterfaceReader.php -------------------------------------------------------------------------------- /DependencyInjection/Services/PassSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/DependencyInjection/Services/PassSecurity.php -------------------------------------------------------------------------------- /Entity/InterfacePassSecurityEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Entity/InterfacePassSecurityEntity.php -------------------------------------------------------------------------------- /Entity/PassSecurityBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Entity/PassSecurityBase.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /PassSecurityBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/PassSecurityBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/NidhognitDependencyInjectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Tests/DependencyInjection/NidhognitDependencyInjectionTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Services/FileReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Tests/DependencyInjection/Services/FileReaderTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nidhognit/PassSecurityBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------