/ config / gpg.php
gpg.php
 1  <?php
 2  
 3  return [
 4  
 5      /*
 6      |--------------------------------------------------------------------------
 7      | Path to Private GPG KEY
 8      |--------------------------------------------------------------------------
 9      |
10      | Your path to the file containing the key
11      |
12      */
13  
14      'private_key_path' => env('PRIVATE_KEY_PATH', ''),
15  
16      /*
17      |--------------------------------------------------------------------------
18      | Private GPG passphrase
19      |--------------------------------------------------------------------------
20      |
21      | A string which is the passphrase to the private key defined in this file
22      |
23      */
24  
25      'private_key_passphrase' => env('PRIVATE_GPG_PASSPHRASE', ''),
26  
27      'homedir' => env('GPG_HOMEDIR', ''),
28      'binary' => '/usr/bin/gpg',
29  
30      'certificate' => [
31          'user' => env('GPG_USERNAME', 'OC'),
32          'email' => env('GPG_EMAIL', 'oc@mail.es'),
33      ],
34  ];