Save a versioned and encrypted copy of .env on a storage disk (eg: S3)
Occulta uses AWS KMS and Envelope encryption strategy to encrypt your .env file and store it on a given laravel disk (eg: S3).
It also keeps a versioned history of your encrypted .env files, so you can restore previous versions if needed.
Occulta will create an archive containing your encrypted environment file and an encrypted key file, which will be used by occulta to decrypt your env when needed.
This package requires Laravel 11.x or higher, php's extensions openssl and zip.
You can install the package via composer:
composer require code16/occultaNext you should publish the config file :
php artisan vendor:publish --tag=occulta-configand setup your values (especially the kms key_id and destination disk) in your config/occulta.php file :
return [
        // kms key id as seen in aws's kms dashboard (usually it looks like an uuid)
        'key_id' => '0904c439-ff1f-4e9d-8a26-4e32ced6fe0x',
        
        [...]
        
        'destination_disk' => 's3_backup',
        'destination_path' => null, // defaults to 'dotenv/'
    
        // If you want to backup an env file with a suffix such as .env.production, you can set this to your desired suffix
        'env_suffix' => null, // eg: 'production'
        
        [...]
    ];Then, you should setup credentials to the proper aws user allowed to "use" the given kms key, by adding a kms section in your config/services.php file :
    'kms' => [
        'key' => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY'),
        'region' => 'eu-central-1',
    ],Now you should schedule tasks for backup and cleanup in app/Console/Kernel.php (bootstrap/app.php since Laravel 11) :
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('occulta:encrypt')->dailyAt('01:00');
        $schedule->command('occulta:clean')->dailyAt('02:00');
    }If you need to decrypt an encrypted env archive, you can use the occulta:decrypt command:
php artisan occulta:decrypt path/to/encrypted/archive.zipOcculta will use your KMS configuration and AWS access and secret keys to decrypt your env file.
Important
It is likely that these credentials where in your lost .env, then, you can follow the recovery procedure to restore your environment.
The package comes with a comprehensive test suite. To run the tests, you can use the following command:
composer testThe tests cover:
- The main 
Occultaclass functionality for encrypting and decrypting values and files - The 
EncryptFileWithKmsCommandfor encrypting .env files and storing them - The 
DecryptFileWithKmsCommandfor extracting and decrypting .env files from zip archives - The 
CleanupEncryptedDotenvsCommandfor managing the history of encrypted .env files 
The tests use mocks for AWS KMS to avoid actual AWS calls during testing.