composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "overtrue/laravel-query-logger",
  3. "description": "A dev tool to log all queries for laravel application.",
  4. "type": "library",
  5. "require": {
  6. "laravel/framework": "~5.5||~6.0||~7.0||~8.0"
  7. },
  8. "autoload": {
  9. "psr-4": {
  10. "Overtrue\\LaravelQueryLogger\\": "src"
  11. }
  12. },
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "overtrue",
  17. "email": "anzhengchao@gmail.com"
  18. }
  19. ],
  20. "extra": {
  21. "laravel": {
  22. "providers": ["Overtrue\\LaravelQueryLogger\\ServiceProvider"]
  23. },
  24. "hooks": {
  25. "pre-commit": [
  26. "composer test",
  27. "composer fix-style"
  28. ],
  29. "pre-push": [
  30. "composer test",
  31. "composer check-style"
  32. ]
  33. }
  34. },
  35. "scripts": {
  36. "post-update-cmd": [
  37. "cghooks update"
  38. ],
  39. "post-merge": "composer install",
  40. "post-install-cmd": [
  41. "cghooks add --ignore-lock",
  42. "cghooks update"
  43. ],
  44. "cghooks": "vendor/bin/cghooks",
  45. "check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
  46. "fix-style": "php-cs-fixer fix --using-cache=no --config=.php_cs --ansi",
  47. "test": "vendor/bin/phpunit --colors=always"
  48. },
  49. "scripts-descriptions": {
  50. "test": "Run all tests.",
  51. "check-style": "Run style checks (only dry run - no fixing!).",
  52. "fix-style": "Run style checks and fix violations."
  53. }
  54. }