composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "robthree/twofactorauth",
  3. "description": "Two Factor Authentication",
  4. "version": "1.8.0",
  5. "type": "library",
  6. "keywords": [ "Authentication", "Two Factor Authentication", "Multi Factor Authentication", "TFA", "MFA", "PHP", "Authenticator", "Authy" ],
  7. "homepage": "https://github.com/RobThree/TwoFactorAuth",
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Rob Janssen",
  12. "homepage": "http://robiii.me",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/RobThree/TwoFactorAuth/issues",
  18. "source": "https://github.com/RobThree/TwoFactorAuth"
  19. },
  20. "require": {
  21. "php": ">=5.6.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "@stable",
  25. "php-parallel-lint/php-parallel-lint": "^1.2"
  26. },
  27. "suggest": {
  28. "bacon/bacon-qr-code": "Needed for BaconQrCodeProvider provider",
  29. "endroid/qr-code": "Needed for EndroidQrCodeProvider"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "RobThree\\Auth\\": "lib"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Tests\\": "tests/"
  39. }
  40. },
  41. "scripts": {
  42. "lint": [
  43. "parallel-lint --exclude vendor ."
  44. ],
  45. "test": [
  46. "XDEBUG_MODE=coverage phpunit"
  47. ]
  48. }
  49. }