composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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/polyfill-mbstring": "~1.0",
  21. "symfony/polyfill-php73": "^1.8",
  22. "symfony/polyfill-php80": "^1.15",
  23. "symfony/service-contracts": "^1.1|^2",
  24. "symfony/string": "^5.1"
  25. },
  26. "require-dev": {
  27. "symfony/config": "^4.4|^5.0",
  28. "symfony/event-dispatcher": "^4.4|^5.0",
  29. "symfony/dependency-injection": "^4.4|^5.0",
  30. "symfony/lock": "^4.4|^5.0",
  31. "symfony/process": "^4.4|^5.0",
  32. "symfony/var-dumper": "^4.4|^5.0",
  33. "psr/log": "~1.0"
  34. },
  35. "provide": {
  36. "psr/log-implementation": "1.0"
  37. },
  38. "suggest": {
  39. "symfony/event-dispatcher": "",
  40. "symfony/lock": "",
  41. "symfony/process": "",
  42. "psr/log": "For using the console logger"
  43. },
  44. "conflict": {
  45. "symfony/dependency-injection": "<4.4",
  46. "symfony/dotenv": "<5.1",
  47. "symfony/event-dispatcher": "<4.4",
  48. "symfony/lock": "<4.4",
  49. "symfony/process": "<4.4"
  50. },
  51. "autoload": {
  52. "psr-4": { "Symfony\\Component\\Console\\": "" },
  53. "exclude-from-classmap": [
  54. "/Tests/"
  55. ]
  56. },
  57. "minimum-stability": "dev"
  58. }