composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "squizlabs/php_codesniffer",
  3. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  4. "type": "library",
  5. "keywords": [
  6. "phpcs",
  7. "standards"
  8. ],
  9. "homepage": "http://www.squizlabs.com/php-codesniffer",
  10. "license": "BSD-3-Clause",
  11. "authors": [
  12. {
  13. "name": "Greg Sherwood",
  14. "role": "lead"
  15. }
  16. ],
  17. "support": {
  18. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  19. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki",
  20. "source": "https://github.com/squizlabs/PHP_CodeSniffer"
  21. },
  22. "extra": {
  23. "branch-alias": {
  24. "dev-master": "3.x-dev"
  25. }
  26. },
  27. "require": {
  28. "php": ">=5.4.0",
  29. "ext-tokenizer": "*",
  30. "ext-xmlwriter": "*",
  31. "ext-simplexml": "*"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  35. },
  36. "bin": [
  37. "bin/phpcs",
  38. "bin/phpcbf"
  39. ]
  40. }