composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "nekonomokochan/php-json-logger",
  3. "description": "LoggingLibrary for PHP. Output by JSON Format",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "keitakn",
  9. "email": "keita.koga.work@gmail.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "Nekonomokochan\\PhpJsonLogger\\": "src/PhpJsonLogger"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "Nekonomokochan\\PhpJsonLogger\\": "src/PhpJsonLogger",
  20. "Nekonomokochan\\Tests\\": "tests/"
  21. }
  22. },
  23. "require": {
  24. "php": "~7.1",
  25. "monolog/monolog": "^1.24",
  26. "ramsey/uuid": "^3.8"
  27. },
  28. "require-dev": {
  29. "php": "~7.1",
  30. "phpunit/phpunit": "^7.5",
  31. "friendsofphp/php-cs-fixer": "^2.14",
  32. "php-coveralls/php-coveralls": "^2.1",
  33. "phpunit/phpcov": "^5.0"
  34. },
  35. "scripts": {
  36. "test": "phpunit",
  37. "test:coverage:html": "phpunit --coverage-html coverage",
  38. "format": "php-cs-fixer fix --diff -v --config .php_cs.dist"
  39. }
  40. }