composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.3",
  21. "composer/xdebug-handler": "^3.0.3",
  22. "doctrine/annotations": "^1.14.2 || ^2",
  23. "doctrine/lexer": "^2",
  24. "sebastian/diff": "^4.0",
  25. "symfony/console": "^5.4 || ^6.0",
  26. "symfony/event-dispatcher": "^5.4 || ^6.0",
  27. "symfony/filesystem": "^5.4 || ^6.0",
  28. "symfony/finder": "^5.4 || ^6.0",
  29. "symfony/options-resolver": "^5.4 || ^6.0",
  30. "symfony/polyfill-mbstring": "^1.27",
  31. "symfony/polyfill-php80": "^1.27",
  32. "symfony/polyfill-php81": "^1.27",
  33. "symfony/process": "^5.4 || ^6.0",
  34. "symfony/stopwatch": "^5.4 || ^6.0"
  35. },
  36. "require-dev": {
  37. "justinrainbow/json-schema": "^5.2",
  38. "keradus/cli-executor": "^2.0",
  39. "mikey179/vfsstream": "^1.6.11",
  40. "php-coveralls/php-coveralls": "^2.5.3",
  41. "php-cs-fixer/accessible-object": "^1.1",
  42. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  43. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  44. "phpspec/prophecy": "^1.16",
  45. "phpspec/prophecy-phpunit": "^2.0",
  46. "phpunit/phpunit": "^9.5",
  47. "phpunitgoodpractices/polyfill": "^1.6",
  48. "phpunitgoodpractices/traits": "^1.9.2",
  49. "symfony/phpunit-bridge": "^6.2.3",
  50. "symfony/yaml": "^5.4 || ^6.0"
  51. },
  52. "suggest": {
  53. "ext-dom": "For handling output formats in XML",
  54. "ext-mbstring": "For handling non-UTF8 characters."
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "PhpCsFixer\\": "src/"
  59. }
  60. },
  61. "autoload-dev": {
  62. "psr-4": {
  63. "PhpCsFixer\\Tests\\": "tests/"
  64. }
  65. },
  66. "bin": [
  67. "php-cs-fixer"
  68. ],
  69. "config": {
  70. "allow-plugins": {
  71. "ergebnis/composer-normalize": true
  72. },
  73. "sort-packages": true
  74. }
  75. }