app.php 11 KB

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