composer.json 876 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "symfony/security-guard",
  3. "type": "library",
  4. "description": "Symfony Security Component - Guard",
  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/security-core": "^5.0",
  21. "symfony/security-http": "^4.4.1|^5.0.1",
  22. "symfony/polyfill-php80": "^1.15"
  23. },
  24. "require-dev": {
  25. "psr/log": "~1.0"
  26. },
  27. "autoload": {
  28. "psr-4": { "Symfony\\Component\\Security\\Guard\\": "" },
  29. "exclude-from-classmap": [
  30. "/Tests/"
  31. ]
  32. },
  33. "minimum-stability": "dev"
  34. }