composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "require": {
  23. "php": ">=5.3.2",
  24. "symfony/framework-bundle": "~2.3",
  25. "symfony/security-bundle": "~2.3"
  26. },
  27. "require-dev": {
  28. "twig/twig": "~1.5",
  29. "doctrine/doctrine-bundle": "~1.3",
  30. "swiftmailer/swiftmailer": "~4.3|~5",
  31. "willdurand/propel-typehintable-behavior": "~1.0",
  32. "symfony/yaml": "~2.3",
  33. "symfony/validator": "~2.3"
  34. },
  35. "suggest": {
  36. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  37. },
  38. "autoload": {
  39. "psr-0": { "FOS\\UserBundle": "" }
  40. },
  41. "target-dir": "FOS/UserBundle",
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "2.0.x-dev"
  45. }
  46. },
  47. "support": {
  48. "docs": "https://symfony.com/doc/1.3.x/bundles/FOSUserBundle/index.html"
  49. }
  50. }