composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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": "^7.4 || ^8.0",
  16. "ext-dom": "*",
  17. "ext-libxml": "*",
  18. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^8.5.21 || ^9.5.10",
  22. "phpstan/phpstan": "^2.0",
  23. "phpstan/phpstan-phpunit": "^2.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "TijsVerkoyen\\CssToInlineStyles\\Tests\\": "tests"
  33. }
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.x-dev"
  38. }
  39. }
  40. }