composer.json 565 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "tedivm/jshrink",
  3. "description": "Javascript Minifier built in PHP",
  4. "keywords": ["minifier","javascript"],
  5. "homepage": "http://github.com/tedious/JShrink",
  6. "type": "library",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Robert Hafner",
  11. "email": "tedivm@tedivm.com"
  12. }
  13. ],
  14. "require": {
  15. "php": "^5.6|^7.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^6",
  19. "friendsofphp/php-cs-fixer": "^2.8",
  20. "php-coveralls/php-coveralls": "^1.1.0"
  21. },
  22. "autoload": {
  23. "psr-0": {"JShrink": "src/"}
  24. }
  25. }