composer.json 849 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "tijsverkoyen/css-to-inline-styles",
  3. "type": "library",
  4. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6. "license": "BSD",
  7. "authors": [
  8. {
  9. "name": "Tijs Verkoyen",
  10. "email": "css_to_inline_styles@verkoyen.eu",
  11. "role": "Developer"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.0",
  16. "symfony/css-selector": "~2.1|~3.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "1.5.x-dev"
  29. }
  30. }
  31. }