composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "symfony/console",
  3. "type": "library",
  4. "description": "Eases the creation of beautiful and testable command line interfaces",
  5. "keywords": ["console", "cli", "command-line", "terminal"],
  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. "symfony/deprecation-contracts": "^2.1|^3",
  21. "symfony/polyfill-mbstring": "~1.0",
  22. "symfony/polyfill-php73": "^1.9",
  23. "symfony/polyfill-php80": "^1.16",
  24. "symfony/service-contracts": "^1.1|^2|^3",
  25. "symfony/string": "^5.1|^6.0"
  26. },
  27. "require-dev": {
  28. "symfony/config": "^4.4|^5.0|^6.0",
  29. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  30. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  31. "symfony/lock": "^4.4|^5.0|^6.0",
  32. "symfony/process": "^4.4|^5.0|^6.0",
  33. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  34. "psr/log": "^1|^2"
  35. },
  36. "provide": {
  37. "psr/log-implementation": "1.0|2.0"
  38. },
  39. "suggest": {
  40. "symfony/event-dispatcher": "",
  41. "symfony/lock": "",
  42. "symfony/process": "",
  43. "psr/log": "For using the console logger"
  44. },
  45. "conflict": {
  46. "psr/log": ">=3",
  47. "symfony/dependency-injection": "<4.4",
  48. "symfony/dotenv": "<5.1",
  49. "symfony/event-dispatcher": "<4.4",
  50. "symfony/lock": "<4.4",
  51. "symfony/process": "<4.4"
  52. },
  53. "autoload": {
  54. "psr-4": { "Symfony\\Component\\Console\\": "" },
  55. "exclude-from-classmap": [
  56. "/Tests/"
  57. ]
  58. },
  59. "minimum-stability": "dev"
  60. }