secretary/local-json-file-adapter

JSON File Adapter for Secretary

3.0.4 2024-01-10 16:44 UTC

README

JSON File Adapter for Secretary

Table of Contents

  1. Installation
  2. Secret Structure

Installation

$ composer require secretary/core secretary/local-json-file-adapter

Secrets File Structure

[
    {
        "key": "my-secret-key",
        "value": "some secret"    
    },
    {
        "key": "some-other-secret",
        "value": {
            "a": "b"
        },
        "metadata": {"foo":  "bar"}
    }
]