composer.json 798 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "jakub-onderka/php-console-highlighter",
  3. "description": "Highlight PHP code in terminal",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Jakub Onderka",
  9. "email": "acci@acci.cz",
  10. "homepage": "http://www.acci.cz/"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {"JakubOnderka\\PhpConsoleHighlighter\\": "src/"}
  15. },
  16. "require": {
  17. "php": ">=5.4.0",
  18. "ext-tokenizer": "*",
  19. "jakub-onderka/php-console-color": "~0.2"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~4.0",
  23. "jakub-onderka/php-parallel-lint": "~1.0",
  24. "jakub-onderka/php-var-dump-check": "~0.1",
  25. "squizlabs/php_codesniffer": "~1.5",
  26. "jakub-onderka/php-code-style": "~1.0"
  27. }
  28. }