composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.2.5",
  20. "psr/container": "^1.0",
  21. "symfony/deprecation-contracts": "^2.1",
  22. "symfony/polyfill-php80": "^1.15",
  23. "symfony/service-contracts": "^1.1.6|^2"
  24. },
  25. "require-dev": {
  26. "symfony/yaml": "^4.4|^5.0",
  27. "symfony/config": "^5.1",
  28. "symfony/expression-language": "^4.4|^5.0"
  29. },
  30. "suggest": {
  31. "symfony/yaml": "",
  32. "symfony/config": "",
  33. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  34. "symfony/expression-language": "For using expressions in service container configuration",
  35. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them"
  36. },
  37. "conflict": {
  38. "symfony/config": "<5.1",
  39. "symfony/finder": "<4.4",
  40. "symfony/proxy-manager-bridge": "<4.4",
  41. "symfony/yaml": "<4.4"
  42. },
  43. "provide": {
  44. "psr/container-implementation": "1.0",
  45. "symfony/service-implementation": "1.0|2.0"
  46. },
  47. "autoload": {
  48. "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" },
  49. "exclude-from-classmap": [
  50. "/Tests/"
  51. ]
  52. },
  53. "minimum-stability": "dev"
  54. }