composer.json 558 B

123456789101112131415161718192021222324
  1. {
  2. "name": "mpdf/psr-log-aware-trait",
  3. "description": "Trait to allow support of different psr/log versions.",
  4. "type": "library",
  5. "require": {
  6. "psr/log": "^1.0 || ^2.0"
  7. },
  8. "license": "MIT",
  9. "autoload": {
  10. "psr-4": {
  11. "Mpdf\\PsrLogAwareTrait\\": "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. }