passport.php 555 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Encryption Keys
  6. |--------------------------------------------------------------------------
  7. |
  8. | Passport uses encryption keys while generating secure access tokens for
  9. | your application. By default, the keys are stored as local files but
  10. | can be set via environment variables when that is more convenient.
  11. |
  12. */
  13. 'private_key' => env('PASSPORT_PRIVATE_KEY'),
  14. 'public_key' => env('PASSPORT_PUBLIC_KEY'),
  15. ];