composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "laravel/socialite",
  3. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  4. "keywords": ["oauth", "laravel"],
  5. "license": "MIT",
  6. "homepage": "https://laravel.com",
  7. "support": {
  8. "issues": "https://github.com/laravel/socialite/issues",
  9. "source": "https://github.com/laravel/socialite"
  10. },
  11. "authors": [
  12. {
  13. "name": "Taylor Otwell",
  14. "email": "taylor@laravel.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^7.2|^8.0",
  19. "ext-json": "*",
  20. "guzzlehttp/guzzle": "^6.0|^7.0",
  21. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  22. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  23. "league/oauth1-client": "^1.0"
  24. },
  25. "require-dev": {
  26. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  27. "mockery/mockery": "^1.0",
  28. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  29. "phpunit/phpunit": "^8.0|^9.3"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Laravel\\Socialite\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Laravel\\Socialite\\Tests\\": "tests/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "5.x-dev"
  44. },
  45. "laravel": {
  46. "providers": [
  47. "Laravel\\Socialite\\SocialiteServiceProvider"
  48. ],
  49. "aliases": {
  50. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  51. }
  52. }
  53. },
  54. "config": {
  55. "sort-packages": true
  56. },
  57. "minimum-stability": "dev",
  58. "prefer-stable": true
  59. }