app.php 11 KB

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