composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "mdanter/ecc",
  3. "description": "PHP Elliptic Curve Cryptography library",
  4. "type": "library",
  5. "homepage": "https://github.com/phpecc/phpecc",
  6. "keywords": ["secp256k1", "secp256r1", "nistp192", "nistp224", "nistp256", "nistp384", "nistp521", "ECDSA", "diffie", "hellman", "ECDH", "elliptic", "curve", "phpecc"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Matyas Danter",
  11. "homepage": "http://matejdanter.com/",
  12. "role": "Author"
  13. },
  14. {
  15. "name": "Thibaud Fabre",
  16. "email": "thibaud@aztech.io",
  17. "homepage": "http://aztech.io",
  18. "role": "Maintainer"
  19. },
  20. {
  21. "name": "Thomas Kerin",
  22. "email": "afk11@users.noreply.github.com",
  23. "role": "Maintainer"
  24. }
  25. ],
  26. "require": {
  27. "php": "^7.0",
  28. "ext-gmp": "*",
  29. "fgrosse/phpasn1": "^2.0"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^6.0",
  33. "squizlabs/php_codesniffer": "^2.0",
  34. "symfony/yaml": "^2.6|^3.0"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Mdanter\\Ecc\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Mdanter\\Ecc\\Tests\\": "tests/unit",
  44. "Mdanter\\Ecc\\WycheProof\\": "tests/wycheproof"
  45. }
  46. }
  47. }