composer.json 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "pelago/emogrifier",
  3. "description": "Converts CSS styles into inline style attributes in your HTML code",
  4. "tags": ["email", "css", "pre-processing"],
  5. "license": "MIT",
  6. "homepage": "http://www.pelagodesign.com/sidecar/emogrifier/",
  7. "authors": [
  8. {
  9. "name": "John Reeve",
  10. "email": "jreeve@pelagodesign.com"
  11. },
  12. {
  13. "name": "Cameron Brooks"
  14. },
  15. {
  16. "name": "Jaime Prado"
  17. },
  18. {
  19. "name": "Oliver Klee",
  20. "email": "typo3-coding@oliverklee.de"
  21. },
  22. {
  23. "name": "Roman Ožana",
  24. "email": "ozana@omdesign.cz"
  25. }
  26. ],
  27. "require": {
  28. "php": ">=5.4.0",
  29. "ext-mbstring": "*"
  30. },
  31. "require-dev": {
  32. "squizlabs/php_codesniffer": "~2.3.0",
  33. "phpunit/phpunit": "~4.6.0"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Pelago\\": "Classes/"
  38. }
  39. }
  40. }