composer.json 598 B

123456789101112131415161718192021222324
  1. {
  2. "name": "jakub-onderka/php-console-color",
  3. "license": "BSD-2-Clause",
  4. "authors": [
  5. {
  6. "name": "Jakub Onderka",
  7. "email": "jakub.onderka@gmail.com"
  8. }
  9. ],
  10. "autoload": {
  11. "psr-4": {"JakubOnderka\\PhpConsoleColor\\": "src/"}
  12. },
  13. "require": {
  14. "php": ">=5.4.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~4.3",
  18. "jakub-onderka/php-parallel-lint": "1.0",
  19. "jakub-onderka/php-var-dump-check": "0.*",
  20. "squizlabs/php_codesniffer": "1.*",
  21. "jakub-onderka/php-code-style": "1.0"
  22. }
  23. }