composer.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.2",
  9. "asdh/laravel-flatpickr": "^2.2",
  10. "google/cloud-text-to-speech": "^1.8",
  11. "laravel/framework": "^11.0",
  12. "laravel/tinker": "^2.9",
  13. "livewire/livewire": "^3.4",
  14. "livewire/volt": "^1.0",
  15. "symfony/process": "^7.0"
  16. },
  17. "require-dev": {
  18. "fakerphp/faker": "^1.23",
  19. "laravel/breeze": "^2.0",
  20. "laravel/pint": "^1.13",
  21. "laravel/sail": "^1.26",
  22. "mockery/mockery": "^1.6",
  23. "nunomaduro/collision": "^8.0",
  24. "phpunit/phpunit": "^11.0.1",
  25. "spatie/laravel-ignition": "^2.4"
  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. "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
  53. "@php artisan migrate --graceful --ansi"
  54. ]
  55. },
  56. "extra": {
  57. "laravel": {
  58. "dont-discover": []
  59. }
  60. },
  61. "config": {
  62. "optimize-autoloader": true,
  63. "preferred-install": "dist",
  64. "sort-packages": true,
  65. "allow-plugins": {
  66. "pestphp/pest-plugin": true,
  67. "php-http/discovery": true
  68. }
  69. },
  70. "minimum-stability": "stable",
  71. "prefer-stable": true
  72. }