composer.json 547B

12345678910111213141516171819202122
  1. {
  2. "name": "kriswallsmith/assetic",
  3. "description": "Asset Management for PHP",
  4. "keywords": ["assets", "compression", "minification"],
  5. "homepage": "https://github.com/kriswallsmith/assetic",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Kris Wallsmith",
  11. "email": "kris.wallsmith@gmail.com",
  12. "homepage": "http://kriswallsmith.net/"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.1"
  17. },
  18. "autoload": {
  19. "psr-0": { "Assetic": "src/" }
  20. }
  21. }