composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "paragonie/constant_time_encoding",
  3. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4. "keywords": [
  5. "base64",
  6. "encoding",
  7. "rfc4648",
  8. "base32",
  9. "base16",
  10. "hex",
  11. "bin2hex",
  12. "hex2bin",
  13. "base64_encode",
  14. "base64_decode",
  15. "base32_encode",
  16. "base32_decode"
  17. ],
  18. "license": "MIT",
  19. "type": "library",
  20. "authors": [
  21. {
  22. "name": "Paragon Initiative Enterprises",
  23. "email": "security@paragonie.com",
  24. "homepage": "https://paragonie.com",
  25. "role": "Maintainer"
  26. },
  27. {
  28. "name": "Steve 'Sc00bz' Thomas",
  29. "email": "steve@tobtu.com",
  30. "homepage": "https://www.tobtu.com",
  31. "role": "Original Developer"
  32. }
  33. ],
  34. "support": {
  35. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  36. "email": "info@paragonie.com",
  37. "source": "https://github.com/paragonie/constant_time_encoding"
  38. },
  39. "require": {
  40. "php": "^8"
  41. },
  42. "require-dev": {
  43. "infection/infection": "^0",
  44. "nikic/php-fuzzer": "^0",
  45. "phpunit/phpunit": "^9|^10|^11",
  46. "vimeo/psalm": "^4|^5|^6"
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "ParagonIE\\ConstantTime\\": "src/"
  51. }
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "ParagonIE\\ConstantTime\\Tests\\": "tests/"
  56. }
  57. },
  58. "scripts": {
  59. "mutation-test": "infection"
  60. },
  61. "config": {
  62. "process-timeout": 0,
  63. "allow-plugins": {
  64. "infection/extension-installer": true
  65. }
  66. }
  67. }