composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "symfony/security-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  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": ">=7.2.5",
  20. "ext-xml": "*",
  21. "symfony/config": "^4.4|^5.0",
  22. "symfony/dependency-injection": "^5.2",
  23. "symfony/deprecation-contracts": "^2.1",
  24. "symfony/event-dispatcher": "^5.1",
  25. "symfony/http-kernel": "^5.0",
  26. "symfony/polyfill-php80": "^1.15",
  27. "symfony/security-core": "^5.2",
  28. "symfony/security-csrf": "^4.4|^5.0",
  29. "symfony/security-guard": "^5.2",
  30. "symfony/security-http": "^5.2"
  31. },
  32. "require-dev": {
  33. "doctrine/doctrine-bundle": "^2.0",
  34. "symfony/asset": "^4.4|^5.0",
  35. "symfony/browser-kit": "^4.4|^5.0",
  36. "symfony/console": "^4.4|^5.0",
  37. "symfony/css-selector": "^4.4|^5.0",
  38. "symfony/dom-crawler": "^4.4|^5.0",
  39. "symfony/expression-language": "^4.4|^5.0",
  40. "symfony/form": "^4.4|^5.0",
  41. "symfony/framework-bundle": "^5.2",
  42. "symfony/process": "^4.4|^5.0",
  43. "symfony/rate-limiter": "^5.2",
  44. "symfony/serializer": "^4.4|^5.0",
  45. "symfony/translation": "^4.4|^5.0",
  46. "symfony/twig-bundle": "^4.4|^5.0",
  47. "symfony/twig-bridge": "^4.4|^5.0",
  48. "symfony/validator": "^4.4|^5.0",
  49. "symfony/yaml": "^4.4|^5.0",
  50. "twig/twig": "^2.13|^3.0.4"
  51. },
  52. "conflict": {
  53. "symfony/browser-kit": "<4.4",
  54. "symfony/console": "<4.4",
  55. "symfony/framework-bundle": "<4.4",
  56. "symfony/ldap": "<4.4",
  57. "symfony/twig-bundle": "<4.4"
  58. },
  59. "autoload": {
  60. "psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" },
  61. "exclude-from-classmap": [
  62. "/Tests/"
  63. ]
  64. },
  65. "minimum-stability": "dev"
  66. }