承接 datahihi1/tiny-env-encryptor 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

datahihi1/tiny-env-encryptor

最新稳定版本:1.0.0

Composer 安装命令:

composer require datahihi1/tiny-env-encryptor

包简介

Encrytor helper for TinyEnv: A simple PHP library to manage environment variables in a secure way.

README 文档

README

Tiny Env Encryptor is a simple PHP command-line tool that helps you securely manage your environment variables by encrypting and decrypting them using TinyEnv.

Requirements

  • PHP 7.1 or higher
  • Composer
  • TinyEnv

Installation

composer require datahihi1/tiny-env-encryptor:^1

Usage

After installation, you can use the tiny-env-encrypt command-line tool.

Generate Encryption Key

To generate a new encryption key, run:

vendor/bin/tiny-env-encrypt generate

This will create a key and display it. Store this key securely, as you'll need it for encryption and decryption.

Encrypt .env File

To encrypt your .env file, use the following command:

vendor/bin/tiny-env-encrypt encrypt <secret_key> .env [.env.encrypted] [key1 key2 ...]
- `<secret_key>`: The encryption key generated earlier.
- `.env`: The input file containing environment variables.
- `[.env.encrypted]`: (Optional) The output file to save the encrypted variables. If not provided, it will overwrite the input file.
- `[key1 key2 ...]`: (Optional) Specific keys to encrypt. If not provided, all variables will be encrypted.

Or helper:

$value = encrypt_env($value, $secretKey);

Decrypt .env File

To decrypt your encrypted .env file, use the following command:

vendor/bin/tiny-env-encrypt decrypt <secret_key> .env.encrypted [.env.decrypted]
- `<secret_key>`: The encryption key used for encryption.
- `.env.encrypted`: The input file containing encrypted environment variables.
- `[.env.decrypted]`: (Optional) The output file to save the decrypted variables. If not provided, it will overwrite the input file.

Or helper:

$value = decrypt_env($value, $secretKey);

License

This project is licensed under the MIT License. See the LICENSE file for details.

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 1

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-10