composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "symfony/config",
  3. "type": "library",
  4. "description": "Symfony Config 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/filesystem": "~3.4|~4.0",
  21. "symfony/polyfill-ctype": "~1.8"
  22. },
  23. "require-dev": {
  24. "symfony/dependency-injection": "~3.4|~4.0",
  25. "symfony/event-dispatcher": "~3.4|~4.0",
  26. "symfony/finder": "~3.4|~4.0",
  27. "symfony/yaml": "~3.4|~4.0"
  28. },
  29. "conflict": {
  30. "symfony/finder": "<3.4"
  31. },
  32. "suggest": {
  33. "symfony/yaml": "To use the yaml reference dumper"
  34. },
  35. "autoload": {
  36. "psr-4": { "Symfony\\Component\\Config\\": "" },
  37. "exclude-from-classmap": [
  38. "/Tests/"
  39. ]
  40. },
  41. "minimum-stability": "dev",
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "4.2-dev"
  45. }
  46. }
  47. }