composer.json 619B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "gregwar/image-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Image handling bundle",
  5. "keywords": ["symfony2", "image"],
  6. "homepage": "https://github.com/Gregwar/ImageBundle",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Grégoire Passault",
  11. "email": "g.passault@gmail.com",
  12. "homepage": "http://www.gregwar.com/"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0",
  17. "ext-gd": "*"
  18. },
  19. "autoload": {
  20. "psr-0": {
  21. "Gregwar\\ImageBundle": ""
  22. }
  23. },
  24. "target-dir": "Gregwar/ImageBundle"
  25. }