Left file: appwork-v1_2_0/laravel-starter/config/app.php  
Right file: appwork-v1_2_1/laravel-starter/config/app.php  
1 <?php = 1 <?php
2     2  
3 return [   3 return [
4     4  
5     /*   5     /*
6     |--------------------------------------------------------------------------   6     |--------------------------------------------------------------------------
7     | Application Name   7     | Application Name
8     |--------------------------------------------------------------------------   8     |--------------------------------------------------------------------------
9     |   9     |
10     | This value is the name of your application. This value is used when the   10     | This value is the name of your application. This value is used when the
11     | framework needs to place the application's name in a notification or   11     | framework needs to place the application's name in a notification or
12     | any other location as required by the application or its packages.   12     | any other location as required by the application or its packages.
13     |   13     |
14     */   14     */
15     15  
16     'name' => env('APP_NAME', 'Laravel'),   16     'name' => env('APP_NAME', 'Laravel'),
17     17  
18     /*   18     /*
19     |--------------------------------------------------------------------------   19     |--------------------------------------------------------------------------
20     | Application Environment   20     | Application Environment
21     |--------------------------------------------------------------------------   21     |--------------------------------------------------------------------------
22     |   22     |
23     | This value determines the "environment" your application is currently   23     | This value determines the "environment" your application is currently
24     | running in. This may determine how you prefer to configure various   24     | running in. This may determine how you prefer to configure various
25     | services your application utilizes. Set this in your ".env" file. <> 25     | services the application utilizes. Set this in your ".env" file.
26     | = 26     |
27     */   27     */
28     28  
29     'env' => env('APP_ENV', 'production'),   29     'env' => env('APP_ENV', 'production'),
30     30  
31     /*   31     /*
32     |--------------------------------------------------------------------------   32     |--------------------------------------------------------------------------
33     | Application Debug Mode   33     | Application Debug Mode
34     |--------------------------------------------------------------------------   34     |--------------------------------------------------------------------------
35     |   35     |
36     | When your application is in debug mode, detailed error messages with   36     | When your application is in debug mode, detailed error messages with
37     | stack traces will be shown on every error that occurs within your   37     | stack traces will be shown on every error that occurs within your
38     | application. If disabled, a simple generic error page is shown.   38     | application. If disabled, a simple generic error page is shown.
39     |   39     |
40     */   40     */
41     41  
42     'debug' => env('APP_DEBUG', false),   42     'debug' => env('APP_DEBUG', false),
43     43  
44     /*   44     /*
45     |--------------------------------------------------------------------------   45     |--------------------------------------------------------------------------
46     | Application URL   46     | Application URL
47     |--------------------------------------------------------------------------   47     |--------------------------------------------------------------------------
48     |   48     |
49     | This URL is used by the console to properly generate URLs when using   49     | This URL is used by the console to properly generate URLs when using
50     | the Artisan command line tool. You should set this to the root of   50     | the Artisan command line tool. You should set this to the root of
51     | your application so that it is used when running Artisan tasks.   51     | your application so that it is used when running Artisan tasks.
52     |   52     |
53     */   53     */
54     54  
55     'url' => env('APP_URL', 'http://localhost'),   55     'url' => env('APP_URL', 'http://localhost'),
    -+ 56  
      57     'asset_url' => env('ASSET_URL', null),
56   = 58  
57     /*   59     /*
58     |--------------------------------------------------------------------------   60     |--------------------------------------------------------------------------
59     | Application Timezone   61     | Application Timezone
60     |--------------------------------------------------------------------------   62     |--------------------------------------------------------------------------
61     |   63     |
62     | Here you may specify the default timezone for your application, which   64     | Here you may specify the default timezone for your application, which
63     | will be used by the PHP date and date-time functions. We have gone   65     | will be used by the PHP date and date-time functions. We have gone
64     | ahead and set this to a sensible default for you out of the box.   66     | ahead and set this to a sensible default for you out of the box.
65     |   67     |
66     */   68     */
67     69  
68     'timezone' => 'UTC',   70     'timezone' => 'UTC',
69     71  
70     /*   72     /*
71     |--------------------------------------------------------------------------   73     |--------------------------------------------------------------------------
72     | Application Locale Configuration   74     | Application Locale Configuration
73     |--------------------------------------------------------------------------   75     |--------------------------------------------------------------------------
74     |   76     |
75     | The application locale determines the default locale that will be used   77     | The application locale determines the default locale that will be used
76     | by the translation service provider. You are free to set this value   78     | by the translation service provider. You are free to set this value
77     | to any of the locales which will be supported by the application.   79     | to any of the locales which will be supported by the application.
78     |   80     |
79     */   81     */
80     82  
81     'locale' => 'en',   83     'locale' => 'en',
82     84  
83     /*   85     /*
84     |--------------------------------------------------------------------------   86     |--------------------------------------------------------------------------
85     | Application Fallback Locale   87     | Application Fallback Locale
86     |--------------------------------------------------------------------------   88     |--------------------------------------------------------------------------
87     |   89     |
88     | The fallback locale determines the locale to use when the current one   90     | The fallback locale determines the locale to use when the current one
89     | is not available. You may change the value to correspond to any of   91     | is not available. You may change the value to correspond to any of
90     | the language folders that are provided through your application.   92     | the language folders that are provided through your application.
91     |   93     |
92     */   94     */
93     95  
94     'fallback_locale' => 'en',   96     'fallback_locale' => 'en',
    -+ 97  
      98     /*
      99     |--------------------------------------------------------------------------
      100     | Faker Locale
      101     |--------------------------------------------------------------------------
      102     |
      103     | This locale will be used by the Faker PHP library when generating fake
      104     | data for your database seeds. For example, this will be used to get
      105     | localized telephone numbers, street address information and more.
      106     |
      107     */
      108  
      109     'faker_locale' => 'en_US',
95   = 110  
96     /*   111     /*
97     |--------------------------------------------------------------------------   112     |--------------------------------------------------------------------------
98     | Encryption Key   113     | Encryption Key
99     |--------------------------------------------------------------------------   114     |--------------------------------------------------------------------------
100     |   115     |
101     | This key is used by the Illuminate encrypter service and should be set   116     | This key is used by the Illuminate encrypter service and should be set
102     | to a random, 32 character string, otherwise these encrypted strings   117     | to a random, 32 character string, otherwise these encrypted strings
103     | will not be safe. Please do this before deploying an application!   118     | will not be safe. Please do this before deploying an application!
104     |   119     |
105     */   120     */
106     121  
107     'key' => env('APP_KEY'),   122     'key' => env('APP_KEY'),
108     123  
109     'cipher' => 'AES-256-CBC',   124     'cipher' => 'AES-256-CBC',
110     125  
111     /*   126     /*
112     |--------------------------------------------------------------------------   127     |--------------------------------------------------------------------------
113     | Autoloaded Service Providers   128     | Autoloaded Service Providers
114     |--------------------------------------------------------------------------   129     |--------------------------------------------------------------------------
115     |   130     |
116     | The service providers listed here will be automatically loaded on the   131     | The service providers listed here will be automatically loaded on the
117     | request to your application. Feel free to add your own services to   132     | request to your application. Feel free to add your own services to
118     | this array to grant expanded functionality to your applications.   133     | this array to grant expanded functionality to your applications.
119     |   134     |
120     */   135     */
121     136  
122     'providers' => [   137     'providers' => [
123     138  
124         /*   139         /*
125          * Laravel Framework Service Providers...   140          * Laravel Framework Service Providers...
126          */   141          */
127         Illuminate\Auth\AuthServiceProvider::class,   142         Illuminate\Auth\AuthServiceProvider::class,
128         Illuminate\Broadcasting\BroadcastServiceProvider::class,   143         Illuminate\Broadcasting\BroadcastServiceProvider::class,
129         Illuminate\Bus\BusServiceProvider::class,   144         Illuminate\Bus\BusServiceProvider::class,
130         Illuminate\Cache\CacheServiceProvider::class,   145         Illuminate\Cache\CacheServiceProvider::class,
131         Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,   146         Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
132         Illuminate\Cookie\CookieServiceProvider::class,   147         Illuminate\Cookie\CookieServiceProvider::class,
133         Illuminate\Database\DatabaseServiceProvider::class,   148         Illuminate\Database\DatabaseServiceProvider::class,
134         Illuminate\Encryption\EncryptionServiceProvider::class,   149         Illuminate\Encryption\EncryptionServiceProvider::class,
135         Illuminate\Filesystem\FilesystemServiceProvider::class,   150         Illuminate\Filesystem\FilesystemServiceProvider::class,
136         Illuminate\Foundation\Providers\FoundationServiceProvider::class,   151         Illuminate\Foundation\Providers\FoundationServiceProvider::class,
137         Illuminate\Hashing\HashServiceProvider::class,   152         Illuminate\Hashing\HashServiceProvider::class,
138         Illuminate\Mail\MailServiceProvider::class,   153         Illuminate\Mail\MailServiceProvider::class,
139         Illuminate\Notifications\NotificationServiceProvider::class,   154         Illuminate\Notifications\NotificationServiceProvider::class,
140         Illuminate\Pagination\PaginationServiceProvider::class,   155         Illuminate\Pagination\PaginationServiceProvider::class,
141         Illuminate\Pipeline\PipelineServiceProvider::class,   156         Illuminate\Pipeline\PipelineServiceProvider::class,
142         Illuminate\Queue\QueueServiceProvider::class,   157         Illuminate\Queue\QueueServiceProvider::class,
143         Illuminate\Redis\RedisServiceProvider::class,   158         Illuminate\Redis\RedisServiceProvider::class,
144         Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,   159         Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
145         Illuminate\Session\SessionServiceProvider::class,   160         Illuminate\Session\SessionServiceProvider::class,
146         Illuminate\Translation\TranslationServiceProvider::class,   161         Illuminate\Translation\TranslationServiceProvider::class,
147         Illuminate\Validation\ValidationServiceProvider::class,   162         Illuminate\Validation\ValidationServiceProvider::class,
148         Illuminate\View\ViewServiceProvider::class,   163         Illuminate\View\ViewServiceProvider::class,
149     164  
150         /*   165         /*
151          * Package Service Providers...   166          * Package Service Providers...
152          */   167          */
153     168  
154         /*   169         /*
155          * Application Service Providers...   170          * Application Service Providers...
156          */   171          */
157         App\Providers\AppServiceProvider::class,   172         App\Providers\AppServiceProvider::class,
158         App\Providers\AuthServiceProvider::class,   173         App\Providers\AuthServiceProvider::class,
159         // App\Providers\BroadcastServiceProvider::class,   174         // App\Providers\BroadcastServiceProvider::class,
160         App\Providers\EventServiceProvider::class,   175         App\Providers\EventServiceProvider::class,
161         App\Providers\RouteServiceProvider::class,   176         App\Providers\RouteServiceProvider::class,
162     177  
163     ],   178     ],
164     179  
165     /*   180     /*
166     |--------------------------------------------------------------------------   181     |--------------------------------------------------------------------------
167     | Class Aliases   182     | Class Aliases
168     |--------------------------------------------------------------------------   183     |--------------------------------------------------------------------------
169     |   184     |
170     | This array of class aliases will be registered when this application   185     | This array of class aliases will be registered when this application
171     | is started. However, feel free to register as many as you wish as   186     | is started. However, feel free to register as many as you wish as
172     | the aliases are "lazy" loaded so they don't hinder performance.   187     | the aliases are "lazy" loaded so they don't hinder performance.
173     |   188     |
174     */   189     */
175     190  
176     'aliases' => [   191     'aliases' => [
177     192  
178         'App' => Illuminate\Support\Facades\App::class,   193         'App' => Illuminate\Support\Facades\App::class,
179         'Artisan' => Illuminate\Support\Facades\Artisan::class,   194         'Artisan' => Illuminate\Support\Facades\Artisan::class,
180         'Auth' => Illuminate\Support\Facades\Auth::class,   195         'Auth' => Illuminate\Support\Facades\Auth::class,
181         'Blade' => Illuminate\Support\Facades\Blade::class,   196         'Blade' => Illuminate\Support\Facades\Blade::class,
182         'Broadcast' => Illuminate\Support\Facades\Broadcast::class,   197         'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
183         'Bus' => Illuminate\Support\Facades\Bus::class,   198         'Bus' => Illuminate\Support\Facades\Bus::class,
184         'Cache' => Illuminate\Support\Facades\Cache::class,   199         'Cache' => Illuminate\Support\Facades\Cache::class,
185         'Config' => Illuminate\Support\Facades\Config::class,   200         'Config' => Illuminate\Support\Facades\Config::class,
186         'Cookie' => Illuminate\Support\Facades\Cookie::class,   201         'Cookie' => Illuminate\Support\Facades\Cookie::class,
187         'Crypt' => Illuminate\Support\Facades\Crypt::class,   202         'Crypt' => Illuminate\Support\Facades\Crypt::class,
188         'DB' => Illuminate\Support\Facades\DB::class,   203         'DB' => Illuminate\Support\Facades\DB::class,
189         'Eloquent' => Illuminate\Database\Eloquent\Model::class,   204         'Eloquent' => Illuminate\Database\Eloquent\Model::class,
190         'Event' => Illuminate\Support\Facades\Event::class,   205         'Event' => Illuminate\Support\Facades\Event::class,
191         'File' => Illuminate\Support\Facades\File::class,   206         'File' => Illuminate\Support\Facades\File::class,
192         'Gate' => Illuminate\Support\Facades\Gate::class,   207         'Gate' => Illuminate\Support\Facades\Gate::class,
193         'Hash' => Illuminate\Support\Facades\Hash::class,   208         'Hash' => Illuminate\Support\Facades\Hash::class,
194         'Lang' => Illuminate\Support\Facades\Lang::class,   209         'Lang' => Illuminate\Support\Facades\Lang::class,
195         'Log' => Illuminate\Support\Facades\Log::class,   210         'Log' => Illuminate\Support\Facades\Log::class,
196         'Mail' => Illuminate\Support\Facades\Mail::class,   211         'Mail' => Illuminate\Support\Facades\Mail::class,
197         'Notification' => Illuminate\Support\Facades\Notification::class,   212         'Notification' => Illuminate\Support\Facades\Notification::class,
198         'Password' => Illuminate\Support\Facades\Password::class,   213         'Password' => Illuminate\Support\Facades\Password::class,
199         'Queue' => Illuminate\Support\Facades\Queue::class,   214         'Queue' => Illuminate\Support\Facades\Queue::class,
200         'Redirect' => Illuminate\Support\Facades\Redirect::class,   215         'Redirect' => Illuminate\Support\Facades\Redirect::class,
201         'Redis' => Illuminate\Support\Facades\Redis::class,   216         'Redis' => Illuminate\Support\Facades\Redis::class,
202         'Request' => Illuminate\Support\Facades\Request::class,   217         'Request' => Illuminate\Support\Facades\Request::class,
203         'Response' => Illuminate\Support\Facades\Response::class,   218         'Response' => Illuminate\Support\Facades\Response::class,
204         'Route' => Illuminate\Support\Facades\Route::class,   219         'Route' => Illuminate\Support\Facades\Route::class,
205         'Schema' => Illuminate\Support\Facades\Schema::class,   220         'Schema' => Illuminate\Support\Facades\Schema::class,
206         'Session' => Illuminate\Support\Facades\Session::class,   221         'Session' => Illuminate\Support\Facades\Session::class,
207         'Storage' => Illuminate\Support\Facades\Storage::class,   222         'Storage' => Illuminate\Support\Facades\Storage::class,
208         'URL' => Illuminate\Support\Facades\URL::class,   223         'URL' => Illuminate\Support\Facades\URL::class,
209         'Validator' => Illuminate\Support\Facades\Validator::class,   224         'Validator' => Illuminate\Support\Facades\Validator::class,
210         'View' => Illuminate\Support\Facades\View::class,   225         'View' => Illuminate\Support\Facades\View::class,
211     226  
212     ],   227     ],
213     228  
214 ];   229 ];