| 
                        12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | 
                        - <?php
 - 
 - return [
 - 
 -     /*
 -     |--------------------------------------------------------------------------
 -     | Application Name
 -     |--------------------------------------------------------------------------
 -     |
 -     | This value is the name of your application. This value is used when the
 -     | framework needs to place the application's name in a notification or
 -     | any other location as required by the application or its packages.
 -     |
 -     */
 - 
 -     'name' => 'Ejercicios',
 - 
 -     /*
 -     |--------------------------------------------------------------------------
 -     | Application Version
 -     |--------------------------------------------------------------------------
 -     |
 -     | This value determines the "version" your application is currently running
 -     | in. You may want to follow the "Semantic Versioning" - Given a version
 -     | number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
 -     |
 -     */
 - 
 -     'version' => app('git.version'),
 - 
 -     /*
 -     |--------------------------------------------------------------------------
 -     | Application Environment
 -     |--------------------------------------------------------------------------
 -     |
 -     | This value determines the "environment" your application is currently
 -     | running in. This may determine how you prefer to configure various
 -     | services the application utilizes. This can be overridden using
 -     | the global command line "--env" option when calling commands.
 -     |
 -     */
 - 
 -     'env' => 'development',
 - 
 -     /*
 -     |--------------------------------------------------------------------------
 -     | Application Timezone
 -     |--------------------------------------------------------------------------
 -     |
 -     | Here you may specify the default timezone for your application, which
 -     | will be used by the PHP date and date-time functions. We have gone
 -     | ahead and set this to a sensible default for you out of the box.
 -     |
 -     */
 - 
 -     'timezone' => 'UTC',
 - 
 -     /*
 -     |--------------------------------------------------------------------------
 -     | Autoloaded Service Providers
 -     |--------------------------------------------------------------------------
 -     |
 -     | The service providers listed here will be automatically loaded on the
 -     | request to your application. Feel free to add your own services to
 -     | this array to grant expanded functionality to your applications.
 -     |
 -     */
 - 
 -     'providers' => [
 -         App\Providers\AppServiceProvider::class,
 -     ],
 - 
 - ];
 
 
  |