composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "fabpot/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.3.6",
  18. "ext-tokenizer": "*",
  19. "symfony/console": "~2.3|~3.0",
  20. "symfony/event-dispatcher": "~2.1|~3.0",
  21. "symfony/filesystem": "~2.1|~3.0",
  22. "symfony/finder": "~2.1|~3.0",
  23. "symfony/process": "~2.3|~3.0",
  24. "symfony/stopwatch": "~2.5|~3.0",
  25. "sebastian/diff": "~1.1"
  26. },
  27. "require-dev": {
  28. "satooshi/php-coveralls": "^1.0"
  29. },
  30. "autoload": {
  31. "psr-4": { "Symfony\\CS\\": "Symfony/CS/" }
  32. },
  33. "bin": ["php-cs-fixer"],
  34. "scripts": {
  35. "test": [
  36. "phpunit"
  37. ],
  38. "test-ci": [
  39. "phpunit --verbose --coverage-clover build/logs/clover.xml"
  40. ]
  41. },
  42. "config": {
  43. "process-timeout": 0
  44. }
  45. }