├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── database-hashing.php ├── phpunit.xml ├── src ├── HashingFacade.php ├── HashingHelper.php ├── HashingServiceProvider.php └── traits │ └── HasHashedAttributes.php └── tests ├── TestCase.php ├── hashing ├── HashedAttributesTraitTest.php ├── HashingFacadeTest.php ├── HashingHelperTest.php └── fixtures │ └── HashingTestModel.php └── migrations └── 2019_03_03_000000_create_test_model_table.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/composer.lock -------------------------------------------------------------------------------- /config/database-hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/config/database-hashing.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/HashingFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/src/HashingFacade.php -------------------------------------------------------------------------------- /src/HashingHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/src/HashingHelper.php -------------------------------------------------------------------------------- /src/HashingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/src/HashingServiceProvider.php -------------------------------------------------------------------------------- /src/traits/HasHashedAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/src/traits/HasHashedAttributes.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/hashing/HashedAttributesTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/hashing/HashedAttributesTraitTest.php -------------------------------------------------------------------------------- /tests/hashing/HashingFacadeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/hashing/HashingFacadeTest.php -------------------------------------------------------------------------------- /tests/hashing/HashingHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/hashing/HashingHelperTest.php -------------------------------------------------------------------------------- /tests/hashing/fixtures/HashingTestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/hashing/fixtures/HashingTestModel.php -------------------------------------------------------------------------------- /tests/migrations/2019_03_03_000000_create_test_model_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackNoordhuis/laravel-database-hashing/HEAD/tests/migrations/2019_03_03_000000_create_test_model_table.php --------------------------------------------------------------------------------