composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "sonata-project/google-authenticator",
  3. "type": "library",
  4. "description": "Library to integrate Google Authenticator into a PHP project",
  5. "keywords": [
  6. "google authenticator"
  7. ],
  8. "homepage": "https://github.com/sonata-project/GoogleAuthenticator",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Thomas Rabaix",
  13. "email": "thomas.rabaix@gmail.com"
  14. },
  15. {
  16. "name": "Christian Stocker",
  17. "email": "me@chregu.tv"
  18. },
  19. {
  20. "name": "Andre DeMarre",
  21. "homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989"
  22. }
  23. ],
  24. "require": {
  25. "php": "^7.1"
  26. },
  27. "require-dev": {
  28. "symfony/phpunit-bridge": "^4.0"
  29. },
  30. "config": {
  31. "sort-packages": true
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Google\\Authenticator\\": "src/",
  41. "Sonata\\GoogleAuthenticator\\": "src/"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "Google\\Authenticator\\Tests\\": "tests/",
  47. "Sonata\\GoogleAuthenticator\\Tests\\": "tests/"
  48. }
  49. }
  50. }