composer.json 1004 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "require": {
  24. "php" : ">=5.5",
  25. "evenement/evenement" : "^2.0|^1.0",
  26. "monolog/monolog" : "^1.3",
  27. "psr/log" : "^1.0",
  28. "symfony/process" : "^2.0|^3.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit" : "^4.0|^5.0"
  32. },
  33. "autoload": {
  34. "psr-0": {
  35. "Alchemy": "src"
  36. }
  37. }
  38. }