composer.json 687 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "fphammerle/yii2-client-cert-auth",
  3. "description": "yii2 extension for automatic login via TLS/SSL/HTTPS client certificates",
  4. "keywords": ["yii2", "authentication", "ssl", "https", "client certificate", "x509"],
  5. "license": "MIT",
  6. "authors" : [
  7. {
  8. "name": "Fabian Peter Hammerle",
  9. "email": "fabian.hammerle@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.4.0",
  14. "yiisoft/yii2": "^2.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^4.8",
  18. "fphammerle/helpers": "^1.2"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "fphammerle\\yii2\\auth\\clientcert\\": ""
  23. }
  24. }
  25. }