composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": "https://github.com/matthiasmullie/minify",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Matthias Mullie",
  11. "homepage": "https://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. "friendsofphp/php-cs-fixer": ">=2.0",
  23. "matthiasmullie/scrapbook": ">=1.3",
  24. "phpunit/phpunit": ">=4.8",
  25. "squizlabs/php_codesniffer": ">=3.0"
  26. },
  27. "suggest": {
  28. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "MatthiasMullie\\Minify\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "MatthiasMullie\\Minify\\Tests\\": "tests/"
  38. }
  39. },
  40. "bin": [
  41. "bin/minifycss",
  42. "bin/minifyjs"
  43. ]
  44. }