composer.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "friendsofphp/php-cs-fixer",
  3. "type": "application",
  4. "description": "A tool to automatically fix PHP code style",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Fabien Potencier",
  9. "email": "fabien@symfony.com"
  10. },
  11. {
  12. "name": "Dariusz Rumiński",
  13. "email": "dariusz.ruminski@gmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.1 || ^8.0",
  18. "ext-json": "*",
  19. "ext-tokenizer": "*",
  20. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  21. "composer/xdebug-handler": "^1.2",
  22. "doctrine/annotations": "^1.2",
  23. "php-cs-fixer/diff": "^2.0",
  24. "symfony/console": "^3.4.43 || ^4.4.11 || ^5.1.3",
  25. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  26. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  27. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  28. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  29. "symfony/polyfill-php70": "^1.0",
  30. "symfony/polyfill-php72": "^1.4",
  31. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  32. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  33. },
  34. "require-dev": {
  35. "justinrainbow/json-schema": "^5.0",
  36. "keradus/cli-executor": "^1.4",
  37. "mikey179/vfsstream": "^1.6",
  38. "php-coveralls/php-coveralls": "^2.4.2",
  39. "php-cs-fixer/accessible-object": "^1.0",
  40. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  41. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  42. "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
  43. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.5",
  44. "phpunitgoodpractices/polyfill": "^1.5",
  45. "phpunitgoodpractices/traits": "^1.9.1",
  46. "sanmai/phpunit-legacy-adapter": "^6.4 || ^8.2.1",
  47. "symfony/phpunit-bridge": "^5.2.1",
  48. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  49. },
  50. "suggest": {
  51. "ext-dom": "For handling output formats in XML",
  52. "ext-mbstring": "For handling non-UTF8 characters.",
  53. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  54. },
  55. "config": {
  56. "sort-packages": true
  57. },
  58. "autoload": {
  59. "psr-4": {
  60. "PhpCsFixer\\": "src/"
  61. }
  62. },
  63. "autoload-dev": {
  64. "psr-4": {
  65. "PhpCsFixer\\Tests\\": "tests/"
  66. }
  67. },
  68. "bin": [
  69. "php-cs-fixer"
  70. ]
  71. }