composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "alchemy/binary-driver",
  3. "type": "library",
  4. "description": "A set of tools to build binary drivers",
  5. "keywords": ["binary", "driver"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Nicolas Le Goff",
  10. "email": "legoff.n@gmail.com"
  11. },
  12. {
  13. "name": "Romain Neutron",
  14. "email": "imprec@gmail.com",
  15. "homepage": "http://www.lickmychip.com/"
  16. },
  17. {
  18. "name": "Phraseanet Team",
  19. "email": "info@alchemy.fr",
  20. "homepage": "http://www.phraseanet.com/"
  21. },
  22. {
  23. "name": "Jens Hausdorf",
  24. "email": "mail@jens-hausdorf.de",
  25. "homepage": "https://jens-hausdorf.de",
  26. "role": "Maintainer"
  27. }
  28. ],
  29. "require": {
  30. "php" : ">=5.5",
  31. "evenement/evenement" : "^3.0|^2.0|^1.0",
  32. "psr/log" : "^1.0",
  33. "symfony/process" : "^2.3|^3.0|^4.0|^5.0"
  34. },
  35. "require-dev": {
  36. "phpunit/phpunit" : "^4.0|^5.0"
  37. },
  38. "autoload": {
  39. "psr-0": {
  40. "Alchemy": "src"
  41. }
  42. }
  43. }