composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  22. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  23. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  24. "league/oauth1-client": "^1.10.1"
  25. },
  26. "require-dev": {
  27. "mockery/mockery": "^1.0",
  28. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  29. "phpstan/phpstan": "^1.10",
  30. "phpunit/phpunit": "^8.0|^9.3"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Laravel\\Socialite\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Laravel\\Socialite\\Tests\\": "tests/"
  40. }
  41. },
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "5.x-dev"
  45. },
  46. "laravel": {
  47. "providers": [
  48. "Laravel\\Socialite\\SocialiteServiceProvider"
  49. ],
  50. "aliases": {
  51. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  52. }
  53. }
  54. },
  55. "config": {
  56. "sort-packages": true
  57. },
  58. "minimum-stability": "dev",
  59. "prefer-stable": true
  60. }