composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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": ">=5.3.9",
  20. "symfony/polyfill-php55": "~1.0",
  21. "symfony/polyfill-php56": "~1.0",
  22. "symfony/polyfill-php70": "~1.0",
  23. "symfony/polyfill-util": "~1.0"
  24. },
  25. "require-dev": {
  26. "symfony/event-dispatcher": "~2.1|~3.0.0",
  27. "symfony/expression-language": "~2.6|~3.0.0",
  28. "symfony/http-foundation": "~2.4|~3.0.0",
  29. "symfony/ldap": "~2.8|~3.0.0",
  30. "symfony/validator": "~2.7.25|^2.8.18|~3.2.5",
  31. "psr/log": "~1.0"
  32. },
  33. "suggest": {
  34. "symfony/event-dispatcher": "",
  35. "symfony/http-foundation": "",
  36. "symfony/validator": "For using the user password constraint",
  37. "symfony/expression-language": "For using the expression voter",
  38. "symfony/ldap": "For using LDAP integration"
  39. },
  40. "autoload": {
  41. "psr-4": { "Symfony\\Component\\Security\\Core\\": "" },
  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. }