composer.json 933 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "symfony/yaml",
  3. "type": "library",
  4. "description": "Loads and dumps YAML files",
  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": ">=8.2",
  20. "symfony/deprecation-contracts": "^2.5|^3.0",
  21. "symfony/polyfill-ctype": "^1.8"
  22. },
  23. "require-dev": {
  24. "symfony/console": "^6.4|^7.0"
  25. },
  26. "conflict": {
  27. "symfony/console": "<6.4"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Yaml\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "bin": [
  36. "Resources/bin/yaml-lint"
  37. ],
  38. "minimum-stability": "dev"
  39. }