app.php 10 KB

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