app.php 10 KB

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