composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "symfony/security-core",
  3. "type": "library",
  4. "description": "Symfony Security Component - Core Library",
  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. "symfony/event-dispatcher-contracts": "^1.1|^2",
  21. "symfony/polyfill-php80": "^1.15",
  22. "symfony/service-contracts": "^1.1.6|^2",
  23. "symfony/deprecation-contracts": "^2.1"
  24. },
  25. "require-dev": {
  26. "psr/container": "^1.0|^2.0",
  27. "symfony/event-dispatcher": "^4.4|^5.0",
  28. "symfony/expression-language": "^4.4|^5.0",
  29. "symfony/http-foundation": "^4.4|^5.0",
  30. "symfony/ldap": "^4.4|^5.0",
  31. "symfony/translation": "^4.4|^5.0",
  32. "symfony/validator": "^5.2",
  33. "psr/log": "~1.0"
  34. },
  35. "conflict": {
  36. "symfony/event-dispatcher": "<4.4",
  37. "symfony/security-guard": "<4.4",
  38. "symfony/ldap": "<4.4",
  39. "symfony/validator": "<5.2"
  40. },
  41. "suggest": {
  42. "psr/container-implementation": "To instantiate the Security class",
  43. "symfony/event-dispatcher": "",
  44. "symfony/http-foundation": "",
  45. "symfony/validator": "For using the user password constraint",
  46. "symfony/expression-language": "For using the expression voter",
  47. "symfony/ldap": "For using LDAP integration"
  48. },
  49. "autoload": {
  50. "psr-4": { "Symfony\\Component\\Security\\Core\\": "" },
  51. "exclude-from-classmap": [
  52. "/Tests/"
  53. ]
  54. },
  55. "minimum-stability": "dev"
  56. }