composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "symfony/security-http",
  3. "type": "library",
  4. "description": "Symfony Security Component - HTTP Integration",
  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/deprecation-contracts": "^2.1",
  21. "symfony/security-core": "^5.2",
  22. "symfony/http-foundation": "^5.2",
  23. "symfony/http-kernel": "^5.2",
  24. "symfony/polyfill-php80": "^1.15",
  25. "symfony/property-access": "^4.4|^5.0"
  26. },
  27. "require-dev": {
  28. "symfony/cache": "^4.4|^5.0",
  29. "symfony/rate-limiter": "^5.2",
  30. "symfony/routing": "^4.4|^5.0",
  31. "symfony/security-csrf": "^4.4|^5.0",
  32. "symfony/translation": "^4.4|^5.0",
  33. "psr/log": "~1.0"
  34. },
  35. "conflict": {
  36. "symfony/event-dispatcher": "<4.3",
  37. "symfony/security-csrf": "<4.4"
  38. },
  39. "suggest": {
  40. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts",
  41. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs"
  42. },
  43. "autoload": {
  44. "psr-4": { "Symfony\\Component\\Security\\Http\\": "" },
  45. "exclude-from-classmap": [
  46. "/Tests/"
  47. ]
  48. },
  49. "minimum-stability": "dev"
  50. }