Skip to content

Commit f418d4a

Browse files
committed
Laravel 11 support
1 parent 2cc18bb commit f418d4a

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Fixed
1212
### Removed --->
1313

14+
## 0.1.5 - 2024-09-03
15+
### Added
16+
- Laravel 11 support
17+
1418
## 0.1.4 - 2024-02-06
1519
### Added
1620
- Config setting to enable/disable encryption

Diff for: README.md

-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/venturedrake/laravel-encryptable.svg?style=flat-square)](https://packagist.org/packages/venturedrake/laravel-encryptable)
44
[![Build Status](https://travis-ci.com/venturedrake/laravel-encryptable.svg?branch=master)](https://travis-ci.com/venturedrake/laravel-encryptable)
5-
[![StyleCI](https://github.styleci.io/repos/310988638/shield?branch=master)](https://github.styleci.io/repos/310988638?branch=master)
65
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/3e78594a3733454e9ebed819debed985)](https://www.codacy.com/gh/venturedrake/laravel-encryptable/dashboard?utm_source=github.com&utm_medium=referral&utm_content=venturedrake/laravel-encryptable&utm_campaign=Badge_Grade)
76
[![Total Downloads](https://img.shields.io/packagist/dt/venturedrake/laravel-encryptable.svg?style=flat-square)](https://packagist.org/packages/venturedrake/laravel-encryptable)
87

98
Automatically encrypt and decrypt database table fields.
109

11-
> ⚠️ Warning: This is a pre-release version that is not yet ready for production use.
12-
1310
## Installation
1411

1512
You can install the package via composer:

Diff for: composer.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@
2121
],
2222
"require": {
2323
"php": "^7.2|^8.0",
24-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0"
24+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
2525
},
2626
"require-dev": {
27-
"friendsofphp/php-cs-fixer": "^2.17",
2827
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
29-
"phpstan/phpstan": "^0.12.65",
3028
"phpunit/phpunit": "^8.0|^9.0"
3129
},
3230
"autoload": {
@@ -41,9 +39,7 @@
4139
},
4240
"scripts": {
4341
"test": "vendor/bin/phpunit --colors=always",
44-
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
45-
"format": "vendor/bin/php-cs-fixer fix --allow-risky=no",
46-
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon"
42+
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
4743
},
4844
"config": {
4945
"sort-packages": true

0 commit comments

Comments
 (0)