You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.7 KiB

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