composer.json 892 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "alchemy/ghostscript",
  3. "type": "library",
  4. "description": "Ghostscript PDF, a library to handle PDF through ghostscript",
  5. "keywords": ["ghostscript", "pdf"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Romain Neutron",
  10. "email": "imprec@gmail.com",
  11. "homepage": "http://www.lickmychip.com/"
  12. },
  13. {
  14. "name": "Phraseanet Team",
  15. "email": "info@alchemy.fr",
  16. "homepage": "http://www.phraseanet.com/"
  17. }
  18. ],
  19. "require": {
  20. "php" : ">=5.3.3",
  21. "alchemy/binary-driver" : "~1.5"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit" : "~3.7",
  25. "sami/sami" : "~1.0",
  26. "silex/silex" : "~1.0"
  27. },
  28. "autoload": {
  29. "psr-0": {
  30. "Ghostscript" : "src"
  31. }
  32. }
  33. }