composer.json 552 B

123456789101112131415161718192021
  1. {
  2. "name": "sabberworm/php-css-parser",
  3. "type": "library",
  4. "description": "Parser for CSS Files written in PHP",
  5. "keywords": ["parser", "css", "stylesheet"],
  6. "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Raphael Schweikert"}
  10. ],
  11. "require": {
  12. "php": ">=5.3.2"
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "~4.8",
  16. "codacy/coverage": "^1.4"
  17. },
  18. "autoload": {
  19. "psr-0": { "Sabberworm\\CSS": "lib/" }
  20. }
  21. }