You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "overtrue/socialite",
  3. "description": "A collection of OAuth 2 packages.",
  4. "keywords": [
  5. "oauth",
  6. "social",
  7. "login",
  8. "weibo",
  9. "wechat",
  10. "qq",
  11. "feishu",
  12. "qcloud"
  13. ],
  14. "autoload": {
  15. "psr-4": {
  16. "Overtrue\\Socialite\\": "src/"
  17. }
  18. },
  19. "require": {
  20. "php": ">=7.4",
  21. "symfony/http-foundation": "^5.0",
  22. "guzzlehttp/guzzle": "~6.0|~7.0",
  23. "ext-json": "*",
  24. "symfony/psr-http-message-bridge": "^2.0",
  25. "ext-openssl": "*"
  26. },
  27. "require-dev": {
  28. "mockery/mockery": "~1.2",
  29. "phpunit/phpunit": "~9.0",
  30. "friendsofphp/php-cs-fixer": "^3.0"
  31. },
  32. "license": "MIT",
  33. "authors": [
  34. {
  35. "name": "overtrue",
  36. "email": "anzhengchao@gmail.com"
  37. }
  38. ],
  39. "scripts": {
  40. "check-style": "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi",
  41. "fix-style": "php-cs-fixer fix --using-cache=no --ansi",
  42. "test": "vendor/bin/phpunit --colors=always"
  43. }
  44. }