├── .codeclimate.yml ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── database-encryption.php ├── docs ├── _config.yml ├── coverage │ ├── .css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── nv.d3.min.css │ │ └── style.css │ ├── .fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── .js │ │ ├── bootstrap.min.js │ │ ├── d3.min.js │ │ ├── file.js │ │ ├── holder.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery.min.js │ │ ├── nv.d3.min.js │ │ └── respond.min.js │ ├── Console │ │ ├── Commands │ │ │ ├── MigrateEncryptionCommand.php.html │ │ │ ├── dashboard.html │ │ │ └── index.html │ │ ├── dashboard.html │ │ └── index.html │ ├── EncryptionDefaults.php.html │ ├── EncryptionFacade.php.html │ ├── EncryptionHelper.php.html │ ├── EncryptionServiceProvider.php.html │ ├── Traits │ │ ├── HasEncryptedAttributes.php.html │ │ ├── dashboard.html │ │ └── index.html │ ├── dashboard.html │ └── index.html └── img │ └── banner-1544x500.png ├── phpdoc.xml ├── phpunit.xml ├── src ├── Console │ └── Commands │ │ └── MigrateEncryptionCommand.php ├── EncryptionDefaults.php ├── EncryptionFacade.php ├── EncryptionHelper.php ├── EncryptionServiceProvider.php ├── Traits │ └── HasEncryptedAttributes.php └── helpers.php └── tests ├── Console └── MigrateEncryptionTest.php ├── Database ├── migrations.sql ├── password_resets.sql ├── test_models.sql └── users.sql ├── DatabaseTestCase.php ├── Defaults ├── ControlCharactersTest.php ├── EnabledTest.php ├── HelpersTest.php ├── PrefixTest.php └── VersioningTest.php ├── Facade └── FacadeTest.php ├── Helper ├── DisabledTest.php ├── EnabledTest.php ├── HeaderPrefixTest.php ├── PrefixTest.php ├── SingletonTest.php ├── VersionPartsTest.php ├── VersioningTest.php └── VersionlessTest.php ├── Models ├── DatabaseModel.php ├── DummyModel.php ├── FakeModel.php └── RealModel.php ├── TestCase.php ├── Traits ├── DatabaseTest.php ├── DirtyTest.php ├── DummyTest.php ├── ExceptionTest.php ├── FloatTest.php └── IntTest.php └── bootstrap.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/composer.json -------------------------------------------------------------------------------- /config/database-encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/config/database-encryption.php -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/coverage/.css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/coverage/.css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/coverage/.css/nv.d3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.css/nv.d3.min.css -------------------------------------------------------------------------------- /docs/coverage/.css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.css/style.css -------------------------------------------------------------------------------- /docs/coverage/.fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/coverage/.fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/coverage/.fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/coverage/.fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/coverage/.fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/coverage/.js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/d3.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/file.js -------------------------------------------------------------------------------- /docs/coverage/.js/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/holder.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/jquery.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/nv.d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/nv.d3.min.js -------------------------------------------------------------------------------- /docs/coverage/.js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/.js/respond.min.js -------------------------------------------------------------------------------- /docs/coverage/Console/Commands/MigrateEncryptionCommand.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Console/Commands/MigrateEncryptionCommand.php.html -------------------------------------------------------------------------------- /docs/coverage/Console/Commands/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Console/Commands/dashboard.html -------------------------------------------------------------------------------- /docs/coverage/Console/Commands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Console/Commands/index.html -------------------------------------------------------------------------------- /docs/coverage/Console/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Console/dashboard.html -------------------------------------------------------------------------------- /docs/coverage/Console/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Console/index.html -------------------------------------------------------------------------------- /docs/coverage/EncryptionDefaults.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/EncryptionDefaults.php.html -------------------------------------------------------------------------------- /docs/coverage/EncryptionFacade.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/EncryptionFacade.php.html -------------------------------------------------------------------------------- /docs/coverage/EncryptionHelper.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/EncryptionHelper.php.html -------------------------------------------------------------------------------- /docs/coverage/EncryptionServiceProvider.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/EncryptionServiceProvider.php.html -------------------------------------------------------------------------------- /docs/coverage/Traits/HasEncryptedAttributes.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Traits/HasEncryptedAttributes.php.html -------------------------------------------------------------------------------- /docs/coverage/Traits/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Traits/dashboard.html -------------------------------------------------------------------------------- /docs/coverage/Traits/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/Traits/index.html -------------------------------------------------------------------------------- /docs/coverage/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/dashboard.html -------------------------------------------------------------------------------- /docs/coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/coverage/index.html -------------------------------------------------------------------------------- /docs/img/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/docs/img/banner-1544x500.png -------------------------------------------------------------------------------- /phpdoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/phpdoc.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Console/Commands/MigrateEncryptionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/Console/Commands/MigrateEncryptionCommand.php -------------------------------------------------------------------------------- /src/EncryptionDefaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/EncryptionDefaults.php -------------------------------------------------------------------------------- /src/EncryptionFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/EncryptionFacade.php -------------------------------------------------------------------------------- /src/EncryptionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/EncryptionHelper.php -------------------------------------------------------------------------------- /src/EncryptionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/EncryptionServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/HasEncryptedAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/Traits/HasEncryptedAttributes.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Console/MigrateEncryptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Console/MigrateEncryptionTest.php -------------------------------------------------------------------------------- /tests/Database/migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Database/migrations.sql -------------------------------------------------------------------------------- /tests/Database/password_resets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Database/password_resets.sql -------------------------------------------------------------------------------- /tests/Database/test_models.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Database/test_models.sql -------------------------------------------------------------------------------- /tests/Database/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Database/users.sql -------------------------------------------------------------------------------- /tests/DatabaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/DatabaseTestCase.php -------------------------------------------------------------------------------- /tests/Defaults/ControlCharactersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Defaults/ControlCharactersTest.php -------------------------------------------------------------------------------- /tests/Defaults/EnabledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Defaults/EnabledTest.php -------------------------------------------------------------------------------- /tests/Defaults/HelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Defaults/HelpersTest.php -------------------------------------------------------------------------------- /tests/Defaults/PrefixTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Defaults/PrefixTest.php -------------------------------------------------------------------------------- /tests/Defaults/VersioningTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Defaults/VersioningTest.php -------------------------------------------------------------------------------- /tests/Facade/FacadeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Facade/FacadeTest.php -------------------------------------------------------------------------------- /tests/Helper/DisabledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/DisabledTest.php -------------------------------------------------------------------------------- /tests/Helper/EnabledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/EnabledTest.php -------------------------------------------------------------------------------- /tests/Helper/HeaderPrefixTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/HeaderPrefixTest.php -------------------------------------------------------------------------------- /tests/Helper/PrefixTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/PrefixTest.php -------------------------------------------------------------------------------- /tests/Helper/SingletonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/SingletonTest.php -------------------------------------------------------------------------------- /tests/Helper/VersionPartsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/VersionPartsTest.php -------------------------------------------------------------------------------- /tests/Helper/VersioningTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/VersioningTest.php -------------------------------------------------------------------------------- /tests/Helper/VersionlessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Helper/VersionlessTest.php -------------------------------------------------------------------------------- /tests/Models/DatabaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Models/DatabaseModel.php -------------------------------------------------------------------------------- /tests/Models/DummyModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Models/DummyModel.php -------------------------------------------------------------------------------- /tests/Models/FakeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Models/FakeModel.php -------------------------------------------------------------------------------- /tests/Models/RealModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Models/RealModel.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Traits/DatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/DatabaseTest.php -------------------------------------------------------------------------------- /tests/Traits/DirtyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/DirtyTest.php -------------------------------------------------------------------------------- /tests/Traits/DummyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/DummyTest.php -------------------------------------------------------------------------------- /tests/Traits/ExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/ExceptionTest.php -------------------------------------------------------------------------------- /tests/Traits/FloatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/FloatTest.php -------------------------------------------------------------------------------- /tests/Traits/IntTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/Traits/IntTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinheap/laravel-database-encryption/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------