composer.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.3",
  9. "aws/aws-sdk-php": "^3.351",
  10. "barryvdh/laravel-dompdf": "^3.1",
  11. "guzzlehttp/guzzle": "^7.2",
  12. "laravel/framework": "^10.10",
  13. "laravel/sanctum": "^3.3",
  14. "laravel/tinker": "^2.8",
  15. "league/flysystem-aws-s3-v3": "3.0",
  16. "phpoffice/phpspreadsheet": "^4.3",
  17. "stechstudio/laravel-jwt": "^1.12",
  18. "symfony/http-client": "^6.4",
  19. "symfony/mailgun-mailer": "^6.4"
  20. },
  21. "require-dev": {
  22. "fakerphp/faker": "^1.9.1",
  23. "laravel/pint": "^1.0",
  24. "laravel/sail": "^1.18",
  25. "mockery/mockery": "^1.4.4",
  26. "nunomaduro/collision": "^7.0",
  27. "phpunit/phpunit": "^10.1",
  28. "spatie/laravel-ignition": "^2.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "App\\": "app/",
  33. "Database\\Factories\\": "database/factories/",
  34. "Database\\Seeders\\": "database/seeders/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Tests\\": "tests/"
  40. }
  41. },
  42. "scripts": {
  43. "post-autoload-dump": [
  44. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  45. "@php artisan package:discover --ansi"
  46. ],
  47. "post-update-cmd": [
  48. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  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. ]
  56. },
  57. "extra": {
  58. "laravel": {
  59. "dont-discover": []
  60. }
  61. },
  62. "config": {
  63. "optimize-autoloader": true,
  64. "preferred-install": "dist",
  65. "sort-packages": true,
  66. "allow-plugins": {
  67. "pestphp/pest-plugin": true,
  68. "php-http/discovery": true
  69. }
  70. },
  71. "minimum-stability": "stable",
  72. "prefer-stable": true
  73. }