PHP code example of corbosman / laravel-docker-secrets

1. Go to this page and download the library: Download corbosman/laravel-docker-secrets library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

corbosman / laravel-docker-secrets example snippets



    return [
        'password' => env('PASSWORD', docker_secret('my-docker-secret'))
    ];


    return [
        'password' => env('PASSWORD', docker_secret_encrypted('my-encrypted-docker-secret'))
    ];


    return [
        'password' => env('PASSWORD', docker_secret_encrypted('my-docker-secret', 'my-default'))
    ];