6
6
[ ![ Current Release] ( https://img.shields.io/github/release/austinheap/laravel-database-encryption.svg )] ( https://github.com/austinheap/laravel-database-encryption/releases )
7
7
[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/austinheap/laravel-database-encryption.svg )] ( https://packagist.org/packages/austinheap/laravel-database-encryption )
8
8
[ ![ 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 )
10
9
[ ![ 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/ )
11
10
[ ![ StyleCI] ( https://styleci.io/repos/113929569/shield?branch=master )] ( https://styleci.io/repos/113929569 )
12
11
[ ![ 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
40
39
41
40
* [ Summary] ( #a-package-for-automatically-encrypting-and-decrypting-eloquent-attributes-in-laravel-55-based-on-configuration-settings )
42
41
* [ Requirements] ( #requirements )
42
+ * [ Status] ( #status )
43
43
* [ Schemas] ( #schemas )
44
44
* [ Installation] ( #installation )
45
45
+ [ Step 1: Composer] ( #step-1-composer )
@@ -61,10 +61,18 @@ directory. The most logical place to start are the [docs for the `HasEncryptedAt
61
61
62
62
## Requirements
63
63
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
66
66
* PHP [ OpenSSL extension] ( http://php.net/manual/en/book.openssl.php )
67
67
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
+
68
76
## Schemas
69
77
70
78
Encrypted values are usually longer than plain text values, sometimes much longer.
@@ -92,15 +100,15 @@ Or add the package to your `composer.json`:
92
100
``` json
93
101
{
94
102
"require" : {
95
- "austinheap/laravel-database-encryption" : " 0.1.0 "
103
+ "austinheap/laravel-database-encryption" : " ^0.2.* "
96
104
}
97
105
}
98
106
```
99
107
100
108
### Step 2: Enable the package (Optional)
101
109
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.
104
112
105
113
If you would like to declare the provider and/or alias explicitly, you may do so by first
106
114
adding the service provider to your ` config/app.php ` file:
0 commit comments