composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "league/oauth2-client",
  3. "description": "OAuth 2.0 Client Library",
  4. "license": "MIT",
  5. "config": {
  6. "sort-packages": true
  7. },
  8. "require": {
  9. "php": "^5.6 || ^7.0 || ^8.0",
  10. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  11. "paragonie/random_compat": "^1 || ^2 || ^9.99"
  12. },
  13. "require-dev": {
  14. "mockery/mockery": "^1.3",
  15. "php-parallel-lint/php-parallel-lint": "^1.2",
  16. "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3",
  17. "squizlabs/php_codesniffer": "^2.3 || ^3.0"
  18. },
  19. "keywords": [
  20. "oauth",
  21. "oauth2",
  22. "authorization",
  23. "authentication",
  24. "idp",
  25. "identity",
  26. "sso",
  27. "single sign on"
  28. ],
  29. "authors": [
  30. {
  31. "name": "Alex Bilbie",
  32. "email": "hello@alexbilbie.com",
  33. "homepage": "http://www.alexbilbie.com",
  34. "role": "Developer"
  35. },
  36. {
  37. "name": "Woody Gilk",
  38. "homepage": "https://github.com/shadowhand",
  39. "role": "Contributor"
  40. }
  41. ],
  42. "autoload": {
  43. "psr-4": {
  44. "League\\OAuth2\\Client\\": "src/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "League\\OAuth2\\Client\\Test\\": "test/src/"
  50. }
  51. },
  52. "extra": {
  53. "branch-alias": {
  54. "dev-2.x": "2.0.x-dev"
  55. }
  56. }
  57. }