composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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": ">=5.3.9",
  20. "symfony/security-core": "^2.8.41",
  21. "symfony/event-dispatcher": "~2.1|~3.0.0",
  22. "symfony/http-foundation": "~2.4|~3.0.0",
  23. "symfony/http-kernel": "~2.4|~3.0.0",
  24. "symfony/polyfill-php56": "~1.0",
  25. "symfony/polyfill-php70": "~1.0",
  26. "symfony/property-access": "~2.3|~3.0.0"
  27. },
  28. "require-dev": {
  29. "symfony/routing": "~2.2|~3.0.0",
  30. "symfony/security-csrf": "^2.8.41|^3.3.17",
  31. "psr/log": "~1.0"
  32. },
  33. "conflict": {
  34. "symfony/security-csrf": ">=2.8.0,<2.8.41 || >=3.0.0,<3.3.17 || >=3.4.0,<3.4.11"
  35. },
  36. "suggest": {
  37. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts",
  38. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs"
  39. },
  40. "autoload": {
  41. "psr-4": { "Symfony\\Component\\Security\\Http\\": "" },
  42. "exclude-from-classmap": [
  43. "/Tests/"
  44. ]
  45. },
  46. "minimum-stability": "dev",
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "2.8-dev"
  50. }
  51. }
  52. }