Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.json 514B

1234567891011121314151617181920
  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": "*"
  16. },
  17. "autoload": {
  18. "psr-0": { "Sabberworm\\CSS": "lib/" }
  19. }
  20. }