composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "tucker-eric/eloquentfilter": "^3.2"
  14. },
  15. "require-dev": {
  16. "fakerphp/faker": "^1.9.1",
  17. "laravel-lang/common": "^6.1",
  18. "laravel/pint": "^1.0",
  19. "laravel/sail": "^1.18",
  20. "mockery/mockery": "^1.4.4",
  21. "nunomaduro/collision": "^7.0",
  22. "phpunit/phpunit": "^10.1",
  23. "spatie/laravel-ignition": "^2.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "App\\": "app/",
  28. "Database\\Factories\\": "database/factories/",
  29. "Database\\Seeders\\": "database/seeders/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Tests\\": "tests/"
  35. }
  36. },
  37. "scripts": {
  38. "post-autoload-dump": [
  39. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  40. "@php artisan package:discover --ansi"
  41. ],
  42. "post-update-cmd": [
  43. "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
  44. "@php artisan lang:update"
  45. ],
  46. "post-root-package-install": [
  47. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  48. ],
  49. "post-create-project-cmd": [
  50. "@php artisan key:generate --ansi"
  51. ]
  52. },
  53. "extra": {
  54. "laravel": {
  55. "dont-discover": []
  56. }
  57. },
  58. "config": {
  59. "optimize-autoloader": true,
  60. "preferred-install": "dist",
  61. "sort-packages": true,
  62. "allow-plugins": {
  63. "pestphp/pest-plugin": true,
  64. "php-http/discovery": true
  65. }
  66. },
  67. "minimum-stability": "stable",
  68. "prefer-stable": true
  69. }