composer.json 964 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "mheap/silex-assetic",
  3. "description": "Assetic extension for Silex",
  4. "keywords": ["silex", "assetic"],
  5. "homepage": "https://github.com/mheap/Silex-Assetic",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Sven Eisenschmidt",
  11. "email": "sven.eisenschmidt@gmail.com",
  12. "homepage": "http://unsicherheitsagent.de/"
  13. },
  14. {
  15. "name": "Michael Heap",
  16. "email": "m@michaelheap.com",
  17. "homepage": "http://michaelheap.com/"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.3.0",
  22. "kriswallsmith/assetic": "~1.0",
  23. "symfony/finder": "~2.1"
  24. },
  25. "require-dev": {
  26. "silex/silex": "~1.0@dev",
  27. "twig/twig": "~1.2",
  28. "phpunit/phpunit": "~3.7.10"
  29. },
  30. "suggest": {
  31. "twig/twig": "~1.2"
  32. },
  33. "autoload": {
  34. "psr-0": {
  35. "SilexAssetic": "src"
  36. }
  37. }
  38. }