Your Friendly PHP JSON Manager
JsonShelter is a nifty PHP library for effortless JSON data management. Letβs explore installation and usage!
composer require almhdy/json-shelter
git clone https://github.com/almhdy24/JsonShelter.git
Download a release from the releases page and extract it to your project.
Integrate JsonShelter easily! Include the class via Composer or directly.
// Include Composer's autoload file
require 'vendor/autoload.php';
// Use JsonShelter
use Almhdy\JsonShelter\JsonShelter;
$db = new JsonShelter("myDatabase", "your_secret_key", "your_secret_iv");
// Include JsonShelter class file
require 'path/to/JsonShelter.php'; // Adjust path
// Use JsonShelter
use Almhdy\JsonShelter\JsonShelter;
$db = new JsonShelter("myDatabase", "your_secret_key", "your_secret_iv");
You can easily enable or disable encryption for your records. This is a handy feature to keep your data secure!
$db->enableEncryption();
$db->disableEncryption();
Thank you for exploring the JsonShelter library! For more detailed information and documentation, please visit our GitHub repository. We encourage you to use this powerful tool, share it with others, and contribute to its ongoing development!
Your feedback and contributions help us make this project even better. Let's build something great together!