composer.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "laravel/laravel",
  3. "type": "project",
  4. "description": "The skeleton application for the Laravel framework.",
  5. "keywords": ["laravel", "framework"],
  6. "license": "MIT",
  7. "require": {
  8. "php": "^8.1",
  9. "barryvdh/laravel-dompdf": "^3.1",
  10. "guzzlehttp/guzzle": "^7.2",
  11. "laravel/framework": "^10.10",
  12. "laravel/sanctum": "^3.3",
  13. "laravel/tinker": "^2.8",
  14. "phpoffice/phpspreadsheet": "^4.3",
  15. "stechstudio/laravel-jwt": "^1.12",
  16. "symfony/http-client": "^6.4",
  17. "symfony/mailgun-mailer": "^6.4"
  18. },
  19. "require-dev": {
  20. "fakerphp/faker": "^1.9.1",
  21. "laravel/pint": "^1.0",
  22. "laravel/sail": "^1.18",
  23. "mockery/mockery": "^1.4.4",
  24. "nunomaduro/collision": "^7.0",
  25. "phpunit/phpunit": "^10.1",
  26. "spatie/laravel-ignition": "^2.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "App\\": "app/",
  31. "Database\\Factories\\": "database/factories/",
  32. "Database\\Seeders\\": "database/seeders/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Tests\\": "tests/"
  38. }
  39. },
  40. "scripts": {
  41. "post-autoload-dump": [
  42. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  43. "@php artisan package:discover --ansi"
  44. ],
  45. "post-update-cmd": [
  46. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  47. ],
  48. "post-root-package-install": [
  49. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  50. ],
  51. "post-create-project-cmd": [
  52. "@php artisan key:generate --ansi"
  53. ]
  54. },
  55. "extra": {
  56. "laravel": {
  57. "dont-discover": []
  58. }
  59. },
  60. "config": {
  61. "optimize-autoloader": true,
  62. "preferred-install": "dist",
  63. "sort-packages": true,
  64. "allow-plugins": {
  65. "pestphp/pest-plugin": true,
  66. "php-http/discovery": true
  67. }
  68. },
  69. "minimum-stability": "stable",
  70. "prefer-stable": true
  71. }