composer.json 606 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "charcoal-dev/buffers",
  3. "description": "Byte Array Buffers for Charcoal PHP Apps",
  4. "type": "library",
  5. "homepage": "https://github.com/charcoal-dev/buffers",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Furqan A. Siddiqui",
  10. "email": "hello@furqansiddiqui.com",
  11. "homepage": "https://www.furqansiddiqui.com",
  12. "role": "Author"
  13. }
  14. ],
  15. "require": {
  16. "php": "^8.1",
  17. "ext-gmp": "*",
  18. "charcoal-dev/gmp-adapter": "^0.0.1"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Charcoal\\Buffers\\": [
  23. "src"
  24. ]
  25. }
  26. },
  27. "minimum-stability": "dev"
  28. }