Se colocaran ejercios para practicar de codigobit
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

app.php 2.4 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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' => 'Ejercicios',
  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. | Application Timezone
  40. |--------------------------------------------------------------------------
  41. |
  42. | Here you may specify the default timezone for your application, which
  43. | will be used by the PHP date and date-time functions. We have gone
  44. | ahead and set this to a sensible default for you out of the box.
  45. |
  46. */
  47. 'timezone' => 'UTC',
  48. /*
  49. |--------------------------------------------------------------------------
  50. | Autoloaded Service Providers
  51. |--------------------------------------------------------------------------
  52. |
  53. | The service providers listed here will be automatically loaded on the
  54. | request to your application. Feel free to add your own services to
  55. | this array to grant expanded functionality to your applications.
  56. |
  57. */
  58. 'providers' => [
  59. App\Providers\AppServiceProvider::class,
  60. ],
  61. ];