composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "symfony/security",
  3. "type": "library",
  4. "description": "Symfony Security Component",
  5. "keywords": [],
  6. "homepage": "https://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": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.9",
  20. "symfony/security-acl": "~2.7|~3.0.0",
  21. "symfony/event-dispatcher": "~2.2|~3.0.0",
  22. "symfony/http-foundation": "^2.7.38|~3.3.13",
  23. "symfony/http-kernel": "~2.4|~3.0.0",
  24. "symfony/polyfill-php55": "~1.0",
  25. "symfony/polyfill-php56": "~1.0",
  26. "symfony/polyfill-php70": "~1.0",
  27. "symfony/polyfill-util": "~1.0",
  28. "symfony/property-access": "~2.3|~3.0.0"
  29. },
  30. "replace": {
  31. "symfony/security-core": "self.version",
  32. "symfony/security-csrf": "self.version",
  33. "symfony/security-guard": "self.version",
  34. "symfony/security-http": "self.version"
  35. },
  36. "require-dev": {
  37. "symfony/finder": "~2.3|~3.0.0",
  38. "symfony/polyfill-intl-icu": "~1.0",
  39. "symfony/routing": "~2.2|~3.0.0",
  40. "symfony/validator": "~2.7.25|^2.8.18|~3.2.5",
  41. "psr/log": "~1.0",
  42. "symfony/expression-language": "~2.6|~3.0.0",
  43. "symfony/ldap": "~2.8|~3.0.0"
  44. },
  45. "conflict": {
  46. "symfony/http-foundation": "~2.8,<2.8.31"
  47. },
  48. "suggest": {
  49. "symfony/form": "",
  50. "symfony/validator": "For using the user password constraint",
  51. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  52. "symfony/expression-language": "For using the expression voter",
  53. "symfony/ldap": "For using the LDAP user and authentication providers"
  54. },
  55. "autoload": {
  56. "psr-4": { "Symfony\\Component\\Security\\": "" },
  57. "exclude-from-classmap": [
  58. "/Core/Tests/",
  59. "/Csrf/Tests/",
  60. "/Guard/Tests/",
  61. "/Http/Tests/"
  62. ]
  63. },
  64. "minimum-stability": "dev",
  65. "extra": {
  66. "branch-alias": {
  67. "dev-master": "2.8-dev"
  68. }
  69. }
  70. }