composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "laravel/laravel",
  3. "type": "project",
  4. "description": "The skeleton application for the Laravel framework.",
  5. "keywords": [
  6. "laravel",
  7. "framework"
  8. ],
  9. "license": "MIT",
  10. "require": {
  11. "php": "^8.3",
  12. "kalnoy/nestedset": "^6.0",
  13. "laravel/framework": "^12.0",
  14. "laravel/sanctum": "^4.0",
  15. "laravel/tinker": "^2.9",
  16. "league/flysystem-aws-s3-v3": "^3.0"
  17. },
  18. "require-dev": {
  19. "barryvdh/laravel-ide-helper": "^3.6",
  20. "fakerphp/faker": "^1.23",
  21. "laravel/pint": "^1.13",
  22. "laravel/sail": "^1.26",
  23. "mockery/mockery": "^1.6",
  24. "nunomaduro/collision": "^8.0",
  25. "phpunit/phpunit": "^11.0.1"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "App\\": "app/",
  30. "Database\\Factories\\": "database/factories/",
  31. "Database\\Seeders\\": "database/seeders/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Tests\\": "tests/"
  37. }
  38. },
  39. "scripts": {
  40. "post-autoload-dump": [
  41. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  42. "@php artisan package:discover --ansi"
  43. ],
  44. "post-update-cmd": [
  45. "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
  46. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  47. "@php artisan ide-helper:generate",
  48. "@php artisan ide-helper:meta"
  49. ],
  50. "post-root-package-install": [
  51. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  52. ],
  53. "post-create-project-cmd": [
  54. "@php artisan key:generate --ansi",
  55. "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
  56. "@php artisan migrate --graceful --ansi"
  57. ]
  58. },
  59. "extra": {
  60. "laravel": {
  61. "dont-discover": []
  62. }
  63. },
  64. "config": {
  65. "optimize-autoloader": true,
  66. "preferred-install": "dist",
  67. "sort-packages": true,
  68. "allow-plugins": {
  69. "pestphp/pest-plugin": true,
  70. "php-http/discovery": true
  71. }
  72. },
  73. "minimum-stability": "stable",
  74. "prefer-stable": true
  75. }