hjbdev/laravel-credential-files

Helper for storing encrypted credentials in files.

dev-main 2022-07-20 12:54 UTC

This package is not auto-updated.

Last update: 2024-06-06 17:15:22 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A simple way to securely store data in your Laravel app.

Installation

You can install the package via composer:

composer require hjbdev/laravel-credential-files

Usage

$credentials = new CredentialFiles();

$credentials->set('foo', 'bar');
$credentials->get('foo'); // 'bar'

$credentials->foo = 'bonk';
$credentials->foo; // 'bonk'

$credentials->foo('baa');
$credentails->foo(); // 'baa'

$credentials->delete('foo');

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.