composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "guzzlehttp/guzzle": "^7.2",
  10. "laravel/framework": "^10.10",
  11. "laravel/sanctum": "^3.3",
  12. "laravel/tinker": "^2.8",
  13. "phpoffice/phpspreadsheet": "^4.3",
  14. "stechstudio/laravel-jwt": "^1.12",
  15. "symfony/http-client": "^6.4",
  16. "symfony/mailgun-mailer": "^6.4"
  17. },
  18. "require-dev": {
  19. "fakerphp/faker": "^1.9.1",
  20. "laravel/pint": "^1.0",
  21. "laravel/sail": "^1.18",
  22. "mockery/mockery": "^1.4.4",
  23. "nunomaduro/collision": "^7.0",
  24. "phpunit/phpunit": "^10.1",
  25. "spatie/laravel-ignition": "^2.0"
  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. ],
  47. "post-root-package-install": [
  48. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  49. ],
  50. "post-create-project-cmd": [
  51. "@php artisan key:generate --ansi"
  52. ]
  53. },
  54. "extra": {
  55. "laravel": {
  56. "dont-discover": []
  57. }
  58. },
  59. "config": {
  60. "optimize-autoloader": true,
  61. "preferred-install": "dist",
  62. "sort-packages": true,
  63. "allow-plugins": {
  64. "pestphp/pest-plugin": true,
  65. "php-http/discovery": true
  66. }
  67. },
  68. "minimum-stability": "stable",
  69. "prefer-stable": true
  70. }