composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "symfony/dependency-injection",
  3. "type": "library",
  4. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  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. "psr/container": "^1.0",
  21. "symfony/service-contracts": "^1.1.6|^2"
  22. },
  23. "require-dev": {
  24. "symfony/yaml": "^4.4|^5.0",
  25. "symfony/config": "^4.3",
  26. "symfony/expression-language": "^3.4|^4.0|^5.0"
  27. },
  28. "suggest": {
  29. "symfony/yaml": "",
  30. "symfony/config": "",
  31. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  32. "symfony/expression-language": "For using expressions in service container configuration",
  33. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them"
  34. },
  35. "conflict": {
  36. "symfony/config": "<4.3|>=5.0",
  37. "symfony/finder": "<3.4",
  38. "symfony/proxy-manager-bridge": "<3.4",
  39. "symfony/yaml": "<3.4"
  40. },
  41. "provide": {
  42. "psr/container-implementation": "1.0",
  43. "symfony/service-implementation": "1.0|2.0"
  44. },
  45. "autoload": {
  46. "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" },
  47. "exclude-from-classmap": [
  48. "/Tests/"
  49. ]
  50. },
  51. "minimum-stability": "dev"
  52. }