OpenSource CLI-App to install and handle stuff related to Web-Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.0 KiB

4 years ago
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the name of your application. This value is used when the
  9. | framework needs to place the application's name in a notification or
  10. | any other location as required by the application or its packages.
  11. |
  12. */
  13. 'name' => 'MCP',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Version
  17. |--------------------------------------------------------------------------
  18. |
  19. | This value determines the "version" your application is currently running
  20. | in. You may want to follow the "Semantic Versioning" - Given a version
  21. | number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
  22. |
  23. */
  24. 'version' => app('git.version'),
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Environment
  28. |--------------------------------------------------------------------------
  29. |
  30. | This value determines the "environment" your application is currently
  31. | running in. This may determine how you prefer to configure various
  32. | services the application utilizes. This can be overridden using
  33. | the global command line "--env" option when calling commands.
  34. |
  35. */
  36. 'env' => 'development',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Autoloaded Service Providers
  40. |--------------------------------------------------------------------------
  41. |
  42. | The service providers listed here will be automatically loaded on the
  43. | request to your application. Feel free to add your own services to
  44. | this array to grant expanded functionality to your applications.
  45. |
  46. */
  47. 'providers' => [
  48. App\Providers\AppServiceProvider::class,
  49. ],
  50. ];