composer.json 805 B

1234567891011121314151617181920212223242526272829303132
  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-3-Clause",
  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.5 || ^7",
  16. "symfony/css-selector": "^2.7|~3.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.8|5.1.*"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "2.0.x-dev"
  29. }
  30. }
  31. }