composer.json 802 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "oyejorge/less.php",
  3. "description": "PHP port of the Javascript version of LESS http://lesscss.org (Originally maintained by Josh Schmidt)",
  4. "keywords": [ "less", "css", "php", "stylesheet", "less.js", "lesscss" ],
  5. "homepage": "http://lessphp.gpeasy.com",
  6. "license": "Apache-2.0",
  7. "authors": [
  8. {
  9. "name": "Josh Schmidt",
  10. "homepage": "https://github.com/oyejorge"
  11. },
  12. {
  13. "name": "Matt Agar",
  14. "homepage": "https://github.com/agar"
  15. },
  16. {
  17. "name": "Martin Jantošovič",
  18. "homepage": "https://github.com/Mordred"
  19. }
  20. ],
  21. "require": {
  22. "PHP" : ">=5.3"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.8.24"
  26. },
  27. "scripts": {
  28. "test": [
  29. "phpunit"
  30. ]
  31. },
  32. "autoload": {
  33. "psr-0": { "Less": "lib/" },
  34. "classmap": ["lessc.inc.php"]
  35. },
  36. "bin": [
  37. "bin/lessc"
  38. ]
  39. }