composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "symfony/http-foundation",
  3. "type": "library",
  4. "description": "Defines an object-oriented layer for the HTTP specification",
  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|^3",
  21. "symfony/polyfill-mbstring": "~1.1",
  22. "symfony/polyfill-php80": "^1.16"
  23. },
  24. "require-dev": {
  25. "predis/predis": "~1.0",
  26. "symfony/cache": "^4.4|^5.0|^6.0",
  27. "symfony/dependency-injection": "^5.4|^6.0",
  28. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  29. "symfony/mime": "^4.4|^5.0|^6.0",
  30. "symfony/expression-language": "^4.4|^5.0|^6.0",
  31. "symfony/rate-limiter": "^5.2|^6.0"
  32. },
  33. "suggest" : {
  34. "symfony/mime": "To use the file extension guesser"
  35. },
  36. "autoload": {
  37. "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" },
  38. "exclude-from-classmap": [
  39. "/Tests/"
  40. ]
  41. },
  42. "minimum-stability": "dev"
  43. }