dotenv-editor.php 761 B

123456789101112131415161718192021222324252627
  1. <?php
  2. return [
  3. /*
  4. |----------------------------------------------------------------------
  5. | Auto backup mode
  6. |----------------------------------------------------------------------
  7. |
  8. | This value is used when you save your file content. If value is true,
  9. | the original file will be backed up before save.
  10. */
  11. 'autoBackup' => true,
  12. /*
  13. |----------------------------------------------------------------------
  14. | Backup location
  15. |----------------------------------------------------------------------
  16. |
  17. | This value is used when you backup your file. This value is the sub
  18. | path from root folder of project application.
  19. */
  20. 'backupPath' => base_path('storage/dotenv-editor/backups/'),
  21. ];