installer.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Server Requirements
  6. |--------------------------------------------------------------------------
  7. |
  8. | This is the default Laravel server requirements, you can add as many
  9. | as your application require, we check if the extension is enabled
  10. | by looping through the array and run "extension_loaded" on it.
  11. |
  12. */
  13. 'requirements' => [
  14. 'openssl',
  15. 'pdo',
  16. 'mbstring',
  17. 'tokenizer',
  18. 'fileinfo',
  19. 'xml',
  20. 'gd',
  21. ],
  22. /*
  23. |--------------------------------------------------------------------------
  24. | Folders Permissions
  25. |--------------------------------------------------------------------------
  26. |
  27. | This is the default Laravel folders permissions, if your application
  28. | requires more permissions just add them to the array list bellow.
  29. |
  30. */
  31. 'permissions' => [
  32. 'storage/app/' => '775',
  33. 'storage/framework/' => '775',
  34. 'storage/logs/' => '775',
  35. 'bootstrap/cache/' => '775'
  36. ]
  37. ];