composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "friendsofphp/php-cs-fixer",
  3. "description": "A tool to automatically fix PHP code style",
  4. "license": "MIT",
  5. "type": "application",
  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.4 || ^8.0",
  18. "ext-json": "*",
  19. "ext-tokenizer": "*",
  20. "composer/semver": "^3.2",
  21. "composer/xdebug-handler": "^3.0",
  22. "doctrine/annotations": "^1.13",
  23. "php-cs-fixer/diff": "^2.0",
  24. "symfony/console": "^5.4 || ^6.0",
  25. "symfony/event-dispatcher": "^5.4 || ^6.0",
  26. "symfony/filesystem": "^5.4 || ^6.0",
  27. "symfony/finder": "^5.4 || ^6.0",
  28. "symfony/options-resolver": "^5.4 || ^6.0",
  29. "symfony/polyfill-mbstring": "^1.23",
  30. "symfony/polyfill-php80": "^1.25",
  31. "symfony/polyfill-php81": "^1.25",
  32. "symfony/process": "^5.4 || ^6.0",
  33. "symfony/stopwatch": "^5.4 || ^6.0"
  34. },
  35. "require-dev": {
  36. "justinrainbow/json-schema": "^5.2",
  37. "keradus/cli-executor": "^1.5",
  38. "mikey179/vfsstream": "^1.6.10",
  39. "php-coveralls/php-coveralls": "^2.5.2",
  40. "php-cs-fixer/accessible-object": "^1.1",
  41. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  42. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  43. "phpspec/prophecy": "^1.15",
  44. "phpspec/prophecy-phpunit": "^2.0",
  45. "phpunit/phpunit": "^9.5",
  46. "phpunitgoodpractices/polyfill": "^1.5",
  47. "phpunitgoodpractices/traits": "^1.9.1",
  48. "symfony/phpunit-bridge": "^6.0",
  49. "symfony/yaml": "^5.4 || ^6.0"
  50. },
  51. "suggest": {
  52. "ext-dom": "For handling output formats in XML",
  53. "ext-mbstring": "For handling non-UTF8 characters."
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "PhpCsFixer\\": "src/"
  58. }
  59. },
  60. "autoload-dev": {
  61. "psr-4": {
  62. "PhpCsFixer\\Tests\\": "tests/"
  63. }
  64. },
  65. "bin": [
  66. "php-cs-fixer"
  67. ],
  68. "config": {
  69. "sort-packages": true
  70. }
  71. }