composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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/breeze": "^1.26",
  11. "laravel/framework": "^10.10",
  12. "laravel/sanctum": "^3.3",
  13. "laravel/tinker": "^2.8",
  14. "monolog/monolog": "^3.0",
  15. "overtrue/laravel-wechat": "^7.0",
  16. "tymon/jwt-auth": "^2.0",
  17. "w7corp/easywechat": "^6.14"
  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. "files": [
  35. "app/Common/common.php"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Tests\\": "tests/"
  41. }
  42. },
  43. "scripts": {
  44. "post-autoload-dump": [
  45. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  46. "@php artisan package:discover --ansi"
  47. ],
  48. "post-update-cmd": [
  49. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  50. ],
  51. "post-root-package-install": [
  52. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  53. ],
  54. "post-create-project-cmd": [
  55. "@php artisan key:generate --ansi"
  56. ]
  57. },
  58. "extra": {
  59. "laravel": {
  60. "dont-discover": []
  61. }
  62. },
  63. "config": {
  64. "optimize-autoloader": true,
  65. "preferred-install": "dist",
  66. "sort-packages": true,
  67. "allow-plugins": {
  68. "pestphp/pest-plugin": true,
  69. "php-http/discovery": true
  70. }
  71. },
  72. "minimum-stability": "stable",
  73. "prefer-stable": true,
  74. "repositories": {
  75. "packagist": {
  76. "type": "composer",
  77. "url": "https://packagist.org"
  78. }
  79. }
  80. }