PHPackages                             encrypt/encrypt - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. encrypt/encrypt

ActiveLibrary[Security](/categories/security)

encrypt/encrypt
===============

A top-level secrets orchestrator. Not just another .env tool — this one encrypts, locks, and sets you up for secure local and team dev.

1.0.0(7mo ago)00MITPHPPHP &gt;=8.0

Since Oct 13Pushed 7mo agoCompare

[ Source](https://github.com/kingjethro999/encrypt-php)[ Packagist](https://packagist.org/packages/encrypt/encrypt)[ RSS](/packages/encrypt-encrypt/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (3)Versions (2)Used By (0)

🔐 Encrypt (PHP)
===============

[](#-encrypt-php)

> *"A top-level secrets orchestrator. Not just another .env tool — this one encrypts, locks, and sets you up for secure local and team dev."*

🚀 Quick Start
-------------

[](#-quick-start)

### Installation

[](#installation)

```
# Install dependencies
cd php
composer install

# Make executable
chmod +x bin/encrypt

# Run commands
./bin/encrypt init
```

### Basic Usage

[](#basic-usage)

```
# Initialize vault
./bin/encrypt init

# Add secrets
./bin/encrypt set API_KEY=your-api-key-here
./bin/encrypt set DB_URL=postgres://localhost:5432/mydb

# Lock secrets before committing
./bin/encrypt lockup mySuperSecurePassword

# New developer setup
./bin/encrypt setup mySuperSecurePassword
```

💻 In-Code Usage
---------------

[](#-in-code-usage)

### PHP

[](#php)

```
