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.

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