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.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. "ext-bcmath": "*",
  13. "ext-intl": "*",
  14. "akaunting/laravel-money": "^5.2",
  15. "andrewdwallo/filament-companies": "^4.0",
  16. "andrewdwallo/filament-selectify": "^2.0",
  17. "andrewdwallo/transmatic": "^1.1",
  18. "awcodes/filament-table-repeater": "^3.0",
  19. "barryvdh/laravel-dompdf": "^2.1",
  20. "bezhansalleh/filament-panel-switch": "^1.0",
  21. "filament/filament": "^3.2.29",
  22. "filament/spatie-laravel-tags-plugin": "^3.0-stable",
  23. "guava/filament-clusters": "^1.1",
  24. "guzzlehttp/guzzle": "^7.8",
  25. "laravel/framework": "^11.0",
  26. "laravel/sanctum": "^4.0",
  27. "laravel/tinker": "^2.9",
  28. "squirephp/model": "^3.4",
  29. "squirephp/repository": "^3.4",
  30. "symfony/intl": "^6.3"
  31. },
  32. "require-dev": {
  33. "fakerphp/faker": "^1.23",
  34. "laravel/pint": "^1.13",
  35. "laravel/sail": "^1.26",
  36. "mockery/mockery": "^1.6",
  37. "nunomaduro/collision": "^8.0",
  38. "phpunit/phpunit": "^10.5",
  39. "spatie/laravel-ignition": "^2.4"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "App\\": "app/",
  44. "Database\\Factories\\": "database/factories/",
  45. "Database\\Seeders\\": "database/seeders/"
  46. },
  47. "files": [
  48. "app/Helpers/format.php"
  49. ]
  50. },
  51. "autoload-dev": {
  52. "psr-4": {
  53. "Tests\\": "tests/"
  54. }
  55. },
  56. "scripts": {
  57. "post-autoload-dump": [
  58. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  59. "@php artisan package:discover --ansi",
  60. "@php artisan filament:upgrade"
  61. ],
  62. "post-update-cmd": [
  63. "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
  64. "npm run build || echo \"Skipping npm run build (npm not available)\""
  65. ],
  66. "post-root-package-install": [
  67. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  68. ],
  69. "post-create-project-cmd": [
  70. "@php artisan key:generate --ansi"
  71. ]
  72. },
  73. "extra": {
  74. "laravel": {
  75. "dont-discover": []
  76. }
  77. },
  78. "config": {
  79. "optimize-autoloader": true,
  80. "preferred-install": "dist",
  81. "sort-packages": true,
  82. "allow-plugins": {
  83. "pestphp/pest-plugin": true,
  84. "php-http/discovery": true
  85. }
  86. },
  87. "minimum-stability": "stable",
  88. "prefer-stable": true
  89. }