Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

composer.json 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "laravel/laravel",
  3. "type": "project",
  4. "description": "The skeleton application for the Laravel framework.",
  5. "keywords": [
  6. "laravel",
  7. "framework"
  8. ],
  9. "license": "MIT",
  10. "require": {
  11. "php": "^8.2",
  12. "akaunting/laravel-money": "^5.1",
  13. "andrewdwallo/filament-companies": "^3.0",
  14. "andrewdwallo/filament-selectify": "^2.0",
  15. "filament/filament": "^3.0",
  16. "filament/spatie-laravel-tags-plugin": "^3.0-stable",
  17. "guzzlehttp/guzzle": "^7.2",
  18. "laravel/framework": "^10.10",
  19. "laravel/sanctum": "^3.2",
  20. "laravel/tinker": "^2.8",
  21. "squirephp/model": "^3.4",
  22. "squirephp/repository": "^3.4"
  23. },
  24. "require-dev": {
  25. "fakerphp/faker": "^1.9.1",
  26. "laravel/pint": "^1.0",
  27. "laravel/sail": "^1.18",
  28. "mockery/mockery": "^1.4.4",
  29. "nunomaduro/collision": "^7.0",
  30. "phpunit/phpunit": "^10.1",
  31. "spatie/laravel-ignition": "^2.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "App\\": "app/",
  36. "Database\\Factories\\": "database/factories/",
  37. "Database\\Seeders\\": "database/seeders/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Tests\\": "tests/"
  43. }
  44. },
  45. "scripts": {
  46. "post-autoload-dump": [
  47. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  48. "@php artisan package:discover --ansi",
  49. "@php artisan filament:upgrade"
  50. ],
  51. "post-update-cmd": [
  52. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  53. ],
  54. "post-root-package-install": [
  55. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  56. ],
  57. "post-create-project-cmd": [
  58. "@php artisan key:generate --ansi"
  59. ]
  60. },
  61. "extra": {
  62. "laravel": {
  63. "dont-discover": []
  64. }
  65. },
  66. "config": {
  67. "optimize-autoloader": true,
  68. "preferred-install": "dist",
  69. "sort-packages": true,
  70. "allow-plugins": {
  71. "pestphp/pest-plugin": true,
  72. "php-http/discovery": true
  73. }
  74. },
  75. "minimum-stability": "stable",
  76. "prefer-stable": true
  77. }