composer.json 879 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.1",
  20. "symfony/polyfill-ctype": "^1.8"
  21. },
  22. "require-dev": {
  23. "symfony/console": "^5.4|^6.0"
  24. },
  25. "conflict": {
  26. "symfony/console": "<5.4"
  27. },
  28. "autoload": {
  29. "psr-4": { "Symfony\\Component\\Yaml\\": "" },
  30. "exclude-from-classmap": [
  31. "/Tests/"
  32. ]
  33. },
  34. "bin": [
  35. "Resources/bin/yaml-lint"
  36. ],
  37. "minimum-stability": "dev"
  38. }