composer.json 589 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "openid/php-openid",
  3. "version": "2.3.0",
  4. "description": "OpenID library for PHP5",
  5. "keywords": ["openid", "authentication", "yadis", "auth"],
  6. "license": "Apache-2.0",
  7. "homepage": "http://github.com/openid/php-openid",
  8. "authors": [
  9. {
  10. "name": "JanRain Inc.",
  11. "homepage": "http://www.openidenabled.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=4.3",
  16. "ext-gmp": "*",
  17. "ext-curl": "*",
  18. "ext-dom": "*"
  19. },
  20. "autoload": {
  21. "classmap": ["Auth"]
  22. },
  23. "include-path": ["."]
  24. }