composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "stevenmaguire/oauth2-keycloak",
  3. "description": "Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Steven Maguire",
  8. "email": "stevenmaguire@gmail.com",
  9. "homepage": "https://github.com/stevenmaguire"
  10. }
  11. ],
  12. "keywords": [
  13. "oauth",
  14. "oauth2",
  15. "client",
  16. "authorization",
  17. "authorisation",
  18. "keycloak"
  19. ],
  20. "require": {
  21. "php": "~7.2 || ~8.0",
  22. "league/oauth2-client": "^2.0",
  23. "firebase/php-jwt": "^4.0 || ^5.0 || ^6.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "~9.6.4",
  27. "mockery/mockery": "~1.5.0",
  28. "squizlabs/php_codesniffer": "~3.7.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Stevenmaguire\\OAuth2\\Client\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Stevenmaguire\\OAuth2\\Client\\Test\\": "test/src/"
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "1.0.x-dev"
  43. }
  44. },
  45. "scripts": {
  46. "test": [
  47. "@putenv XDEBUG_MODE=coverage",
  48. "phpunit --colors=always"
  49. ]
  50. }
  51. }