composer.json 685 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "mpdf/psr-http-message-shim",
  3. "description": "Shim to allow support of different psr/message versions.",
  4. "type": "library",
  5. "require": {
  6. "psr/http-message": "^1.0"
  7. },
  8. "license": "MIT",
  9. "autoload": {
  10. "psr-4": {
  11. "Mpdf\\PsrHttpMessageShim\\": "src/"
  12. }
  13. },
  14. "authors": [
  15. {
  16. "name": "Mark Dorison",
  17. "email": "mark@chromatichq.com"
  18. },
  19. {
  20. "name": "Kristofer Widholm",
  21. "email": "kristofer@chromatichq.com"
  22. },
  23. {
  24. "name": "Nigel Cunningham",
  25. "email": "nigel.cunningham@technocrat.com.au"
  26. }
  27. ]
  28. }