composer.json 991 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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": ">=5.3.9",
  20. "symfony/filesystem": "~2.3|~3.0.0",
  21. "symfony/polyfill-ctype": "~1.8"
  22. },
  23. "require-dev": {
  24. "symfony/yaml": "~2.7|~3.0.0"
  25. },
  26. "suggest": {
  27. "symfony/yaml": "To use the yaml reference dumper"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Config\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev",
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.8-dev"
  39. }
  40. }
  41. }