composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.4",
  33. "typo3-ci/typo3sniffpool": "2.1.1",
  34. "phpunit/phpunit": "4.8.11"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Pelago\\": "Classes/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.1.x-dev"
  44. }
  45. }
  46. }