composer.json 965 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "simplito/elliptic-php",
  3. "description": "Fast elliptic curve cryptography",
  4. "type": "library",
  5. "homepage": "https://github.com/simplito/elliptic-php",
  6. "keywords": ["elliptic", "curve", "cryptography", "ECC",
  7. "ECDH", "ECDSA", "EdDSA",
  8. "secp256k1", "curve25519", "curve25519-weier", "ed25519",
  9. "nistp192", "nistp224", "nistp256", "nistp384", "nistp521"],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Simplito Team",
  14. "email": "s.smyczynski@simplito.com",
  15. "homepage": "https://simplito.com"
  16. }
  17. ],
  18. "require": {
  19. "ext-gmp": "*",
  20. "simplito/bn-php": "~1.1.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "*",
  24. "phpbench/phpbench": "@dev"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Elliptic\\": "lib/"
  29. }
  30. },
  31. "scripts": {
  32. "test": "phpunit --verbose"
  33. }
  34. }