No Description

composer.json 1.6KB

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