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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "$schema": "https://getcomposer.org/schema.json",
  3. "name": "andrewdwallo/erpsaas",
  4. "type": "project",
  5. "description": "The skeleton application for the Laravel framework.",
  6. "keywords": [
  7. "laravel",
  8. "framework"
  9. ],
  10. "license": "MIT",
  11. "require": {
  12. "php": "^8.2",
  13. "ext-bcmath": "*",
  14. "ext-intl": "*",
  15. "akaunting/laravel-money": "^6.0.2",
  16. "andrewdwallo/filament-companies": "^4.0",
  17. "andrewdwallo/filament-selectify": "^2.0",
  18. "andrewdwallo/transmatic": "^1.1",
  19. "awcodes/filament-table-repeater": "^3.0",
  20. "barryvdh/laravel-snappy": "^1.0",
  21. "codewithdennis/filament-simple-alert": "^3.0",
  22. "fakerphp/faker": "^1.24",
  23. "filament/filament": "^3.2",
  24. "guava/filament-clusters": "^1.1",
  25. "jaocero/radio-deck": "^1.2",
  26. "laravel/framework": "^12.0",
  27. "laravel/sanctum": "^4.0",
  28. "laravel/tinker": "^2.10.1",
  29. "squirephp/model": "^3.4",
  30. "squirephp/repository": "^3.4",
  31. "symfony/intl": "^6.3"
  32. },
  33. "require-dev": {
  34. "barryvdh/laravel-debugbar": "^3.15",
  35. "laravel/pail": "^1.2.2",
  36. "laravel/pint": "^1.24",
  37. "laravel/sail": "^1.41",
  38. "mockery/mockery": "^1.6",
  39. "nunomaduro/collision": "^8.6",
  40. "pestphp/pest": "^3.0",
  41. "pestphp/pest-plugin-livewire": "^3.0",
  42. "spatie/laravel-ignition": "^2.4",
  43. "spatie/laravel-ray": "^1.36"
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "App\\": "app/",
  48. "Database\\Factories\\": "database/factories/",
  49. "Database\\Seeders\\": "database/seeders/"
  50. },
  51. "files": [
  52. "app/Helpers/helpers.php"
  53. ]
  54. },
  55. "autoload-dev": {
  56. "psr-4": {
  57. "Tests\\": "tests/"
  58. }
  59. },
  60. "scripts": {
  61. "post-autoload-dump": [
  62. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  63. "@php artisan package:discover --ansi",
  64. "@php artisan filament:upgrade"
  65. ],
  66. "post-update-cmd": [
  67. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  68. ],
  69. "post-root-package-install": [
  70. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  71. ],
  72. "post-create-project-cmd": [
  73. "@php artisan key:generate --ansi",
  74. "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
  75. "@php artisan migrate --graceful --ansi"
  76. ],
  77. "dev": [
  78. "Composer\\Config::disableProcessTimeout",
  79. "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
  80. ],
  81. "test": [
  82. "@php artisan config:clear --ansi",
  83. "@php artisan test"
  84. ]
  85. },
  86. "extra": {
  87. "laravel": {
  88. "dont-discover": []
  89. }
  90. },
  91. "config": {
  92. "optimize-autoloader": true,
  93. "preferred-install": "dist",
  94. "sort-packages": true,
  95. "allow-plugins": {
  96. "pestphp/pest-plugin": true,
  97. "php-http/discovery": true
  98. }
  99. },
  100. "minimum-stability": "stable",
  101. "prefer-stable": true
  102. }