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.1",
  9. "dompdf/dompdf": "^2.0",
  10. "elephantio/elephant.io": "*",
  11. "firebase/php-jwt": "^6.7",
  12. "guzzlehttp/guzzle": "^7.2",
  13. "jenssegers/agent": "^2.6",
  14. "laravel/framework": "^11.0",
  15. "laravel/sanctum": "^4.0",
  16. "laravel/tinker": "^2.8",
  17. "phpoffice/phpproject": "^0.2.0",
  18. "phpoffice/phpspreadsheet": "^1.29"
  19. },
  20. "require-dev": {
  21. "fakerphp/faker": "^1.9.1",
  22. "laravel/pint": "^1.0",
  23. "laravel/sail": "^1.18",
  24. "mockery/mockery": "^1.4.4",
  25. "nunomaduro/collision": "^8.1",
  26. "phpunit/phpunit": "^10.1",
  27. "spatie/laravel-ignition": "^2.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "App\\": "app/",
  32. "Database\\Factories\\": "database/factories/",
  33. "Database\\Seeders\\": "database/seeders/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Tests\\": "tests/"
  39. }
  40. },
  41. "scripts": {
  42. "post-autoload-dump": [
  43. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  44. "@php artisan package:discover --ansi"
  45. ],
  46. "post-update-cmd": [
  47. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  48. ],
  49. "post-root-package-install": [
  50. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  51. ],
  52. "post-create-project-cmd": [
  53. "@php artisan key:generate --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. }