You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

3 years ago
  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",
  21. "symfony/polyfill-mbstring": "~1.1",
  22. "symfony/polyfill-php80": "^1.15"
  23. },
  24. "require-dev": {
  25. "predis/predis": "~1.0",
  26. "symfony/cache": "^4.4|^5.0",
  27. "symfony/mime": "^4.4|^5.0",
  28. "symfony/expression-language": "^4.4|^5.0"
  29. },
  30. "suggest" : {
  31. "symfony/mime": "To use the file extension guesser"
  32. },
  33. "autoload": {
  34. "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" },
  35. "exclude-from-classmap": [
  36. "/Tests/"
  37. ]
  38. },
  39. "minimum-stability": "dev"
  40. }