composer.json 948 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. },
  31. "license": "MIT",
  32. "authors": [
  33. {
  34. "name": "overtrue",
  35. "email": "anzhengchao@gmail.com"
  36. }
  37. ],
  38. "scripts": {
  39. "check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
  40. "fix-style": "php-cs-fixer fix --using-cache=no --config=.php_cs --ansi",
  41. "test": "vendor/bin/phpunit --colors=always"
  42. }
  43. }