From 1911242019b54717d482349cf41b65e3aed05433 Mon Sep 17 00:00:00 2001 From: Sandeep Thakkar Date: Thu, 7 Mar 2024 16:03:54 +0530 Subject: [PATCH 1/2] fix: Changed in readme for encryptable array --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d79df2b..788dbc1 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ class User extends Model { use Encryptable; // <-- 1. Include trait - protected $encryptable = [ // <-- 2. Include columns to be encrypted + public array $encryptable = [ // <-- 2. Include columns to be encrypted 'email', 'first_name', 'last_name', From 89a6bb1c40231b0e5c6c409ec014d8a27eb241e4 Mon Sep 17 00:00:00 2001 From: Sandeep Thakkar Date: Thu, 7 Mar 2024 16:23:16 +0530 Subject: [PATCH 2/2] fix: Chane support version --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f33ed1e..94dc291 100644 --- a/composer.json +++ b/composer.json @@ -18,8 +18,8 @@ ], "require": { "php": "^8.0", - "illuminate/database": "^10.0", - "illuminate/support": "^10.0" + "illuminate/database": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0" }, "autoload": { "psr-4": {