You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "$schema": "https://getcomposer.org/schema.json",
  3. "name": "laravel/laravel",
  4. "type": "project",
  5. "description": "The skeleton application for the Laravel framework.",
  6. "keywords": ["laravel", "framework"],
  7. "license": "MIT",
  8. "require": {
  9. "php": "^8.2",
  10. "laravel/framework": "^11.31",
  11. "laravel/tinker": "^2.9"
  12. },
  13. "require-dev": {
  14. "fakerphp/faker": "^1.23",
  15. "laravel/pail": "^1.1",
  16. "laravel/pint": "^1.13",
  17. "laravel/sail": "^1.26",
  18. "mockery/mockery": "^1.6",
  19. "nunomaduro/collision": "^8.1",
  20. "phpunit/phpunit": "^11.0.1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "App\\": "app/",
  25. "Database\\Factories\\": "database/factories/",
  26. "Database\\Seeders\\": "database/seeders/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Tests\\": "tests/"
  32. }
  33. },
  34. "scripts": {
  35. "post-autoload-dump": [
  36. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  37. "@php artisan package:discover --ansi"
  38. ],
  39. "post-update-cmd": [
  40. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  41. ],
  42. "post-root-package-install": [
  43. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  44. ],
  45. "post-create-project-cmd": [
  46. "@php artisan key:generate --ansi",
  47. "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
  48. "@php artisan migrate --graceful --ansi"
  49. ],
  50. "dev": [
  51. "Composer\\Config::disableProcessTimeout",
  52. "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
  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. }