2
0

composer.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "$schema": "https://getcomposer.org/schema.json",
  3. "name": "laravel/laravel",
  4. "type": "project",
  5. "description": "The skeleton application for the Laravel framework.",
  6. "keywords": [
  7. "laravel",
  8. "framework"
  9. ],
  10. "license": "MIT",
  11. "require": {
  12. "php": "^8.2",
  13. "firebase/php-jwt": "^6.11",
  14. "godruoyi/php-snowflake": "^3.2",
  15. "guzzlehttp/guzzle": "^7.9",
  16. "intervention/image": "^3.11",
  17. "laravel/framework": "^12.0",
  18. "laravel/tinker": "^2.10.1",
  19. "mustache/mustache": "^2.14",
  20. "php-amqplib/php-amqplib": "^3.7",
  21. "php-ffmpeg/php-ffmpeg": "^1.3",
  22. "phpoffice/phpspreadsheet": "^4.3"
  23. },
  24. "require-dev": {
  25. "fakerphp/faker": "^1.23",
  26. "laravel/pail": "^1.2.2",
  27. "laravel/pint": "^1.13",
  28. "laravel/sail": "^1.41",
  29. "mockery/mockery": "^1.6",
  30. "nunomaduro/collision": "^8.6",
  31. "phpunit/phpunit": "^11.5.3"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "App\\": "app/",
  36. "Database\\Factories\\": "database/factories/",
  37. "Database\\Seeders\\": "database/seeders/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Tests\\": "tests/"
  43. }
  44. },
  45. "scripts": {
  46. "post-autoload-dump": [
  47. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  48. "@php artisan package:discover --ansi"
  49. ],
  50. "post-update-cmd": [
  51. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  52. ],
  53. "post-root-package-install": [
  54. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  55. ],
  56. "post-create-project-cmd": [
  57. "@php artisan key:generate --ansi",
  58. "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
  59. "@php artisan migrate --graceful --ansi"
  60. ],
  61. "dev": [
  62. "Composer\\Config::disableProcessTimeout",
  63. "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
  64. ],
  65. "test": [
  66. "@php artisan config:clear --ansi",
  67. "@php artisan test"
  68. ]
  69. },
  70. "extra": {
  71. "laravel": {
  72. "dont-discover": []
  73. }
  74. },
  75. "config": {
  76. "optimize-autoloader": true,
  77. "preferred-install": "dist",
  78. "sort-packages": true,
  79. "allow-plugins": {
  80. "pestphp/pest-plugin": true,
  81. "php-http/discovery": true
  82. }
  83. },
  84. "minimum-stability": "stable",
  85. "prefer-stable": true
  86. }