composer.json 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "symfony/yaml",
  3. "type": "library",
  4. "description": "Symfony Yaml Component",
  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.1.3",
  20. "symfony/polyfill-ctype": "~1.8"
  21. },
  22. "require-dev": {
  23. "symfony/console": "~3.4|~4.0"
  24. },
  25. "conflict": {
  26. "symfony/console": "<3.4"
  27. },
  28. "suggest": {
  29. "symfony/console": "For validating YAML files using the lint command"
  30. },
  31. "autoload": {
  32. "psr-4": { "Symfony\\Component\\Yaml\\": "" },
  33. "exclude-from-classmap": [
  34. "/Tests/"
  35. ]
  36. },
  37. "minimum-stability": "dev",
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "4.3-dev"
  41. }
  42. }
  43. }