composer.json 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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": "^5.6 || ^7.0 || ^8.0",
  18. "ext-json": "*",
  19. "ext-tokenizer": "*",
  20. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  21. "composer/xdebug-handler": "^1.2 || ^2.0",
  22. "doctrine/annotations": "^1.2",
  23. "php-cs-fixer/diff": "^1.3",
  24. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  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. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  54. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  55. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  56. },
  57. "config": {
  58. "sort-packages": true
  59. },
  60. "extra": {
  61. "branch-alias": {
  62. "dev-master": "2.19-dev"
  63. }
  64. },
  65. "autoload": {
  66. "psr-4": {
  67. "PhpCsFixer\\": "src/"
  68. },
  69. "classmap": [
  70. "tests/Test/AbstractFixerTestCase.php",
  71. "tests/Test/AbstractIntegrationCaseFactory.php",
  72. "tests/Test/AbstractIntegrationTestCase.php",
  73. "tests/Test/Assert/AssertTokensTrait.php",
  74. "tests/Test/IntegrationCase.php",
  75. "tests/Test/IntegrationCaseFactory.php",
  76. "tests/Test/IntegrationCaseFactoryInterface.php",
  77. "tests/Test/InternalIntegrationCaseFactory.php",
  78. "tests/Test/IsIdenticalConstraint.php",
  79. "tests/Test/TokensWithObservedTransformers.php",
  80. "tests/TestCase.php"
  81. ]
  82. },
  83. "autoload-dev": {
  84. "psr-4": {
  85. "PhpCsFixer\\Tests\\": "tests/"
  86. }
  87. },
  88. "bin": [
  89. "php-cs-fixer"
  90. ]
  91. }