composer.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "friendsofsymfony/user-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony FOSUserBundle",
  5. "keywords": ["User management"],
  6. "homepage": "http://friendsofsymfony.github.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Christophe Coevoet",
  11. "email": "stof@notk.org"
  12. },
  13. {
  14. "name": "Thibault Duplessis",
  15. "email": "thibault.duplessis@gmail.com"
  16. },
  17. {
  18. "name": "FriendsOfSymfony Community",
  19. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  20. }
  21. ],
  22. "minimum-stability": "dev",
  23. "require": {
  24. "php": ">=5.3.2",
  25. "symfony/framework-bundle": ">=2.1,<2.3-dev",
  26. "symfony/security-bundle": ">=2.1,<2.3-dev"
  27. },
  28. "require-dev": {
  29. "twig/twig": "*",
  30. "doctrine/doctrine-bundle": "*",
  31. "swiftmailer/swiftmailer": "*",
  32. "willdurand/propel-typehintable-behavior": "dev-master",
  33. "symfony/yaml": "2.1.*",
  34. "symfony/validator": "2.1.*"
  35. },
  36. "autoload": {
  37. "psr-0": { "FOS\\UserBundle": "" }
  38. },
  39. "target-dir": "FOS/UserBundle",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.0.x-dev"
  43. }
  44. }
  45. }