composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/security-csrf",
  3. "type": "library",
  4. "description": "Symfony Security Component - CSRF 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": ">=5.3.9",
  20. "symfony/polyfill-php56": "~1.0",
  21. "symfony/polyfill-php70": "~1.0",
  22. "symfony/security-core": "^2.8.41|^3.3.17"
  23. },
  24. "require-dev": {
  25. "symfony/http-foundation": "^2.7.38|~3.3.13"
  26. },
  27. "conflict": {
  28. "symfony/http-foundation": "<2.7.38|~2.8,<2.8.31|~3.3,<3.3.13"
  29. },
  30. "suggest": {
  31. "symfony/http-foundation": "For using the class SessionTokenStorage."
  32. },
  33. "autoload": {
  34. "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" },
  35. "exclude-from-classmap": [
  36. "/Tests/"
  37. ]
  38. },
  39. "minimum-stability": "dev",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.8-dev"
  43. }
  44. }
  45. }