composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/config",
  3. "type": "library",
  4. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  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/filesystem": "^4.4|^5.0",
  22. "symfony/polyfill-ctype": "~1.8",
  23. "symfony/polyfill-php80": "^1.15"
  24. },
  25. "require-dev": {
  26. "symfony/event-dispatcher": "^4.4|^5.0",
  27. "symfony/finder": "^4.4|^5.0",
  28. "symfony/messenger": "^4.4|^5.0",
  29. "symfony/service-contracts": "^1.1|^2",
  30. "symfony/yaml": "^4.4|^5.0"
  31. },
  32. "conflict": {
  33. "symfony/finder": "<4.4"
  34. },
  35. "suggest": {
  36. "symfony/yaml": "To use the yaml reference dumper"
  37. },
  38. "autoload": {
  39. "psr-4": { "Symfony\\Component\\Config\\": "" },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "minimum-stability": "dev"
  45. }