composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "league/oauth2-client": "^2.0",
  22. "firebase/php-jwt": "~4.0|~5.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.0",
  26. "mockery/mockery": "~0.9",
  27. "squizlabs/php_codesniffer": "~2.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Stevenmaguire\\OAuth2\\Client\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Stevenmaguire\\OAuth2\\Client\\Test\\": "test/src/"
  37. }
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.0.x-dev"
  42. }
  43. }
  44. }