app.php 10 KB

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