From 1fad8fa11e0858d58d7a033d64428798ce9bffa0 Mon Sep 17 00:00:00 2001 From: Tapan Date: Thu, 27 Feb 2025 10:51:31 +0530 Subject: [PATCH] laravel 12.x support added --- README.md | 4 ++-- composer.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 65d246c..ff76faa 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Laravel/Lumen MySql AES Encrypt/Decrypt +# Laravel MySql AES Encrypt/Decrypt Total Downloads Latest Stable Version License -Laravel/Lumen database encryption at database side using native AES_DECRYPT and AES_ENCRYPT functions. +Laravel database encryption at database side using native AES_DECRYPT and AES_ENCRYPT functions. Automatically encrypt and decrypt fields in your Models. ## Install diff --git a/composer.json b/composer.json index 6410abe..bbf2bb9 100644 --- a/composer.json +++ b/composer.json @@ -18,8 +18,8 @@ ], "require": { "php": "^8.0", - "illuminate/database": "^10.0|^11.0", - "illuminate/support": "^10.0|^11.0" + "illuminate/database": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0" }, "autoload": { "psr-4": { @@ -46,7 +46,7 @@ "minimum-stability": "dev", "prefer-stable": true, "require-dev": { - "orchestra/testbench": "^8.0|^9.0", + "orchestra/testbench": "^8.0|^9.0|^10.0", "pestphp/pest": "^2.0|^3.0", "pestphp/pest-plugin-laravel": "^2.0|^3.0" },