composer.json 516 B

1234567891011121314151617181920212223
  1. {
  2. "name": "simplito/bn-php",
  3. "description": "Big number implementation compatible with bn.js",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Simplito Team",
  8. "email": "s.smyczynski@simplito.com",
  9. "homepage": "https://simplito.com"
  10. }
  11. ],
  12. "require": {
  13. "simplito/bigint-wrapper-php": "~1.0.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "*"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "BN\\": "lib/"
  21. }
  22. }
  23. }