composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "sylius/translation",
  3. "type": "library",
  4. "description": "Translation helper.",
  5. "keywords": ["translation"],
  6. "homepage": "http://sylius.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Paweł Jędrzejewski",
  11. "homepage": "http://pjedrzejewski.com"
  12. },
  13. {
  14. "name": "Sylius project",
  15. "homepage": "http://sylius.org"
  16. },
  17. {
  18. "name": "Community contributions",
  19. "homepage": "http://github.com/Sylius/Sylius/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.3.3",
  24. "doctrine/collections" : "~1.2",
  25. "doctrine/orm" : "~2.4"
  26. },
  27. "require-dev": {
  28. "phpspec/phpspec": "~2.0"
  29. },
  30. "config": {
  31. "bin-dir": "bin"
  32. },
  33. "autoload": {
  34. "psr-4": { "Sylius\\Component\\Translation\\": "" }
  35. },
  36. "autoload-dev": {
  37. "psr-4": { "Sylius\\Component\\Translation\\spec\\": "spec/" }
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "0.13-dev"
  42. }
  43. }
  44. }