composer.json 912 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "mrclay/minify",
  3. "type": "library",
  4. "description": "Minify is a PHP5 app that helps you follow several rules for client-side performance. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers",
  5. "homepage": "http://code.google.com/p/minify/",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Stephen Clay",
  10. "email": "steve@mrclay.org",
  11. "role": "Developer"
  12. }
  13. ],
  14. "support": {
  15. "email": "minify@googlegroups.com",
  16. "issues": "http://code.google.com/p/minify/issues/list",
  17. "wiki": "http://code.google.com/p/minify/w/list"
  18. },
  19. "autoload": {
  20. "classmap": ["min/lib/"]
  21. },
  22. "require": {
  23. "php": ">=5.2.1",
  24. "ext-pcre": "*"
  25. },
  26. "require-dev": {
  27. "tubalmartin/cssmin": "~2.4.8"
  28. },
  29. "suggest": {
  30. "tubalmartin/cssmin": "Support minify with CSSMin (YUI PHP port)"
  31. }
  32. }