66[ ![ Current Release] ( https://img.shields.io/github/release/austinheap/laravel-database-encryption.svg )] ( https://github.com/austinheap/laravel-database-encryption/releases )
77[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/austinheap/laravel-database-encryption.svg )] ( https://packagist.org/packages/austinheap/laravel-database-encryption )
88[ ![ Build Status] ( https://travis-ci.org/austinheap/laravel-database-encryption.svg?branch=master )] ( https://travis-ci.org/austinheap/laravel-database-encryption )
9- [ ![ Dependency Status] ( https://gemnasium.com/badges/github.com/austinheap/laravel-database-encryption.svg )] ( https://gemnasium.com/github.com/austinheap/laravel-database-encryption )
109[ ![ Scrutinizer CI] ( https://scrutinizer-ci.com/g/austinheap/laravel-database-encryption/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/austinheap/laravel-database-encryption/ )
1110[ ![ StyleCI] ( https://styleci.io/repos/113929569/shield?branch=master )] ( https://styleci.io/repos/113929569 )
1211[ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/a63deda99383852c739b/maintainability )] ( https://codeclimate.com/github/austinheap/laravel-database-encryption/maintainability )
@@ -40,6 +39,7 @@ directory. The most logical place to start are the [docs for the `HasEncryptedAt
4039
4140* [ Summary] ( #a-package-for-automatically-encrypting-and-decrypting-eloquent-attributes-in-laravel-55-based-on-configuration-settings )
4241* [ Requirements] ( #requirements )
42+ * [ Status] ( #status )
4343* [ Schemas] ( #schemas )
4444* [ Installation] ( #installation )
4545 + [ Step 1: Composer] ( #step-1-composer )
@@ -61,10 +61,18 @@ directory. The most logical place to start are the [docs for the `HasEncryptedAt
6161
6262## Requirements
6363
64- * Laravel 5.5. *
65- * PHP >= 7.1.0
64+ * Laravel: 5.5, 5.6, or 5.7
65+ * PHP: 7.1 or 7.2
6666* PHP [ OpenSSL extension] ( http://php.net/manual/en/book.openssl.php )
6767
68+ ## Status
69+
70+ ** Framework** |** Version** |** Release** |** Status** |** Tests**
71+ :-----:|:-----:|:-----:|:-----:|:-----:
72+ Laravel|[ v5.5] ( https://laravel.com/docs/5.5/releases ) |[ v0.1.1] ( https://github.com/austinheap/laravel-database-encryption/releases/tag/v0.1.1 ) ([ Packagist] ( https://packagist.org/packages/austinheap/laravel-database-encryption#v0.1.1 ) )|Stable|Passing
73+ Laravel|[ v5.6] ( https://laravel.com/docs/5.6/releases ) |[ v0.1.1] ( https://github.com/austinheap/laravel-database-encryption/releases/tag/v0.1.1 ) ([ Packagist] ( https://packagist.org/packages/austinheap/laravel-database-encryption#v0.1.1 ) )|Stable|Passing
74+ Laravel|[ v5.7] ( https://laravel.com/docs/5.7/releases ) |[ v0.2.0] ( https://github.com/austinheap/laravel-database-encryption/releases/tag/v0.2.0 ) ([ Packagist] ( https://packagist.org/packages/austinheap/laravel-database-encryption#v0.2.0 ) )|Beta|Passing
75+
6876## Schemas
6977
7078Encrypted values are usually longer than plain text values, sometimes much longer.
@@ -92,15 +100,15 @@ Or add the package to your `composer.json`:
92100``` json
93101{
94102 "require" : {
95- "austinheap/laravel-database-encryption" : " 0.1.0 "
103+ "austinheap/laravel-database-encryption" : " ^0.2.* "
96104 }
97105}
98106```
99107
100108### Step 2: Enable the package (Optional)
101109
102- This package implements Laravel 5.5's auto-discovery feature. After you install it the
103- package provider and facade are added automatically.
110+ This package implements Laravel auto-discovery feature. After you install it the package
111+ provider and facade are added automatically.
104112
105113If you would like to declare the provider and/or alias explicitly, you may do so by first
106114adding the service provider to your ` config/app.php ` file:
0 commit comments