composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "symfony/security",
  3. "type": "library",
  4. "description": "Symfony Security Component",
  5. "keywords": [],
  6. "homepage": "http://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "http://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.3",
  20. "symfony/event-dispatcher": "~2.1",
  21. "symfony/http-foundation": "~2.1",
  22. "symfony/http-kernel": "~2.1"
  23. },
  24. "require-dev": {
  25. "symfony/form": "~2.0",
  26. "symfony/routing": "~2.2",
  27. "symfony/validator": "~2.2",
  28. "doctrine/common": "~2.2",
  29. "doctrine/dbal": "~2.2",
  30. "psr/log": "~1.0",
  31. "ircmaxell/password-compat": "1.0.*"
  32. },
  33. "suggest": {
  34. "symfony/class-loader": "",
  35. "symfony/finder": "",
  36. "symfony/form": "",
  37. "symfony/validator": "",
  38. "symfony/routing": "",
  39. "doctrine/dbal": "to use the built-in ACL implementation",
  40. "ircmaxell/password-compat": ""
  41. },
  42. "autoload": {
  43. "psr-0": { "Symfony\\Component\\Security\\": "" }
  44. },
  45. "target-dir": "Symfony/Component/Security",
  46. "minimum-stability": "dev",
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "2.3-dev"
  50. }
  51. }
  52. }