composer.json 544 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "leafo/lessphp",
  3. "type": "library",
  4. "description": "lessphp is a compiler for LESS written in PHP.",
  5. "homepage": "http://leafo.net/lessphp/",
  6. "license": [
  7. "MIT",
  8. "GPL-3.0"
  9. ],
  10. "authors": [
  11. {
  12. "name": "Leaf Corcoran",
  13. "email": "leafot@gmail.com",
  14. "homepage": "http://leafo.net"
  15. }
  16. ],
  17. "autoload": {
  18. "classmap": ["lessc.inc.php"]
  19. },
  20. "extra": {
  21. "branch-alias": {
  22. "dev-master": "0.3-dev"
  23. }
  24. }
  25. }