composer.json 609 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "leafo/scssphp",
  3. "type": "library",
  4. "description": "scssphp is a compiler for SCSS written in PHP.",
  5. "homepage": "http://leafo.net/scssphp/",
  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": ["scss.inc.php"]
  19. },
  20. "require": {
  21. "php": ">=5.2.0"
  22. },
  23. "require-dev": {
  24. "php": ">=5.3.0",
  25. "phpunit/phpunit": "3.7.*"
  26. },
  27. "bin": ["pscss"]
  28. }