composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": ">=8.4",
  20. "symfony/polyfill-mbstring": "^1.0",
  21. "symfony/service-contracts": "^2.5|^3",
  22. "symfony/string": "^7.4|^8.0"
  23. },
  24. "require-dev": {
  25. "psr/log": "^1|^2|^3",
  26. "symfony/config": "^7.4|^8.0",
  27. "symfony/dependency-injection": "^7.4|^8.0",
  28. "symfony/event-dispatcher": "^7.4|^8.0",
  29. "symfony/http-foundation": "^7.4|^8.0",
  30. "symfony/http-kernel": "^7.4|^8.0",
  31. "symfony/lock": "^7.4|^8.0",
  32. "symfony/messenger": "^7.4|^8.0",
  33. "symfony/process": "^7.4|^8.0",
  34. "symfony/stopwatch": "^7.4|^8.0",
  35. "symfony/var-dumper": "^7.4|^8.0"
  36. },
  37. "provide": {
  38. "psr/log-implementation": "1.0|2.0|3.0"
  39. },
  40. "autoload": {
  41. "psr-4": { "Symfony\\Component\\Console\\": "" },
  42. "exclude-from-classmap": [
  43. "/Tests/"
  44. ]
  45. },
  46. "minimum-stability": "dev"
  47. }