composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "matthiasmullie/minify",
  3. "type": "library",
  4. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  5. "keywords": ["minify", "minifier", "css", "js", "javascript"],
  6. "homepage": "http://www.minifier.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Matthias Mullie",
  11. "homepage": "http://www.mullie.eu",
  12. "email": "minify@mullie.eu",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.3.0",
  18. "ext-pcre": "*",
  19. "matthiasmullie/path-converter": "~1.1"
  20. },
  21. "require-dev": {
  22. "matthiasmullie/scrapbook": "dev-master",
  23. "phpunit/phpunit": ">=4.8",
  24. "friendsofphp/php-cs-fixer": "~2.0"
  25. },
  26. "suggest": {
  27. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "MatthiasMullie\\Minify\\": "src/"
  32. }
  33. },
  34. "bin": [
  35. "bin/minifycss",
  36. "bin/minifyjs"
  37. ]
  38. }