Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit cf1afc4

Browse files
committed
v0.2.0
1 parent 2e2669d commit cf1afc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+862
-852
lines changed

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
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

7078
Encrypted 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

105113
If you would like to declare the provider and/or alias explicitly, you may do so by first
106114
adding the service provider to your `config/app.php` file:

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
}
4040
],
4141
"replace": {
42-
"delatbabel/elocryptfive": "1.5.*",
42+
"delatbabel/elocryptfive": "1.5.*|1.*",
4343
"dtisgodsson/elocrypt": "1.*"
4444
},
4545
"conflict": {

config/database-encryption.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* src/config/database-encryption.php.
44
*
55
* @author Austin Heap <me@austinheap.com>
6-
* @version v0.1.2
6+
* @version v0.2.0
77
*/
88

99
return [

docs/checkstyle.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0"?>
22
<checkstyle version="1.3.0">
33
<file name="EncryptionFacade.php"/>
4-
<file name="helpers.php">
4+
<file name="Traits/HasEncryptedAttributes.php">
55
<error line="0" severity="error" message="No summary was found for this file" source="phpDocumentor.file.PPC:ERR-50000"/>
66
</file>
7-
<file name="EncryptionDefaults.php">
7+
<file name="EncryptionHelper.php">
88
<error line="0" severity="error" message="No summary was found for this file" source="phpDocumentor.file.PPC:ERR-50000"/>
99
</file>
10-
<file name="EncryptionHelper.php">
10+
<file name="EncryptionDefaults.php">
1111
<error line="0" severity="error" message="No summary was found for this file" source="phpDocumentor.file.PPC:ERR-50000"/>
1212
</file>
13-
<file name="Console/Commands/MigrateEncryptionCommand.php">
13+
<file name="EncryptionServiceProvider.php"/>
14+
<file name="helpers.php">
1415
<error line="0" severity="error" message="No summary was found for this file" source="phpDocumentor.file.PPC:ERR-50000"/>
1516
</file>
16-
<file name="Traits/HasEncryptedAttributes.php">
17+
<file name="Console/Commands/MigrateEncryptionCommand.php">
1718
<error line="0" severity="error" message="No summary was found for this file" source="phpDocumentor.file.PPC:ERR-50000"/>
1819
</file>
19-
<file name="EncryptionServiceProvider.php"/>
2020
</checkstyle>

0 commit comments

Comments
 (0)