composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.2.5 || ^8.0",
  18. "ext-json": "*",
  19. "ext-tokenizer": "*",
  20. "composer/semver": "^3.2",
  21. "composer/xdebug-handler": "^2.0",
  22. "doctrine/annotations": "^1.12",
  23. "php-cs-fixer/diff": "^2.0",
  24. "symfony/console": "^4.4.20 || ^5.1.3",
  25. "symfony/event-dispatcher": "^4.4.20 || ^5.0",
  26. "symfony/filesystem": "^4.4.20 || ^5.0",
  27. "symfony/finder": "^4.4.20 || ^5.0",
  28. "symfony/options-resolver": "^4.4.20 || ^5.0",
  29. "symfony/polyfill-mbstring": "^1.23",
  30. "symfony/polyfill-php72": "^1.23",
  31. "symfony/polyfill-php80": "^1.23",
  32. "symfony/polyfill-php81": "^1.23",
  33. "symfony/process": "^4.4.20 || ^5.0",
  34. "symfony/stopwatch": "^4.4.20 || ^5.0"
  35. },
  36. "require-dev": {
  37. "justinrainbow/json-schema": "^5.2",
  38. "keradus/cli-executor": "^1.5",
  39. "mikey179/vfsstream": "^1.6.8",
  40. "php-coveralls/php-coveralls": "^2.4.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.10.3",
  45. "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
  46. "phpunit/phpunit": "^8.5.21 || ^9.5",
  47. "phpunitgoodpractices/polyfill": "^1.5",
  48. "phpunitgoodpractices/traits": "^1.9.1",
  49. "symfony/phpunit-bridge": "^5.2.4",
  50. "symfony/yaml": "^4.4.20 || ^5.0"
  51. },
  52. "suggest": {
  53. "ext-dom": "For handling output formats in XML",
  54. "ext-mbstring": "For handling non-UTF8 characters."
  55. },
  56. "config": {
  57. "sort-packages": true
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "PhpCsFixer\\": "src/"
  62. }
  63. },
  64. "autoload-dev": {
  65. "psr-4": {
  66. "PhpCsFixer\\Tests\\": "tests/"
  67. }
  68. },
  69. "bin": [
  70. "php-cs-fixer"
  71. ]
  72. }