composer.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "laravel/pail",
  3. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  4. "keywords": ["php", "tail", "laravel", "logs"],
  5. "homepage": "https://github.com/laravel/pail",
  6. "license": "MIT",
  7. "support": {
  8. "issues": "https://github.com/laravel/pail/issues",
  9. "source": "https://github.com/laravel/pail"
  10. },
  11. "authors": [
  12. {
  13. "name": "Taylor Otwell",
  14. "email": "taylor@laravel.com"
  15. },
  16. {
  17. "name": "Nuno Maduro",
  18. "email": "enunomaduro@gmail.com"
  19. }
  20. ],
  21. "require": {
  22. "php": "^8.2",
  23. "ext-mbstring": "*",
  24. "illuminate/console": "^10.24|^11.0|^12.0",
  25. "illuminate/contracts": "^10.24|^11.0|^12.0",
  26. "illuminate/log": "^10.24|^11.0|^12.0",
  27. "illuminate/process": "^10.24|^11.0|^12.0",
  28. "illuminate/support": "^10.24|^11.0|^12.0",
  29. "nunomaduro/termwind": "^1.15|^2.0",
  30. "symfony/console": "^6.0|^7.0"
  31. },
  32. "require-dev": {
  33. "laravel/framework": "^10.24|^11.0|^12.0",
  34. "laravel/pint": "^1.13",
  35. "orchestra/testbench-core": "^8.13|^9.0|^10.0",
  36. "pestphp/pest": "^2.20|^3.0",
  37. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0",
  38. "phpstan/phpstan": "^1.10",
  39. "symfony/var-dumper": "^6.3|^7.0"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "Laravel\\Pail\\": "src/"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Tests\\": "tests/"
  49. }
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-main": "1.x-dev"
  54. },
  55. "laravel": {
  56. "providers": [
  57. "Laravel\\Pail\\PailServiceProvider"
  58. ]
  59. }
  60. },
  61. "config": {
  62. "sort-packages": true,
  63. "allow-plugins": {
  64. "pestphp/pest-plugin": true
  65. }
  66. },
  67. "minimum-stability": "dev",
  68. "prefer-stable": true
  69. }