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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "andrewdwallo/erpsaas",
  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-snappy": "^1.0",
  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. "pestphp/pest": "^3.0",
  38. "pestphp/pest-plugin-livewire": "^3.0",
  39. "spatie/laravel-ignition": "^2.4",
  40. "spatie/laravel-ray": "^1.36"
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "App\\": "app/",
  45. "Database\\Factories\\": "database/factories/",
  46. "Database\\Seeders\\": "database/seeders/"
  47. },
  48. "files": [
  49. "app/Helpers/format.php"
  50. ]
  51. },
  52. "autoload-dev": {
  53. "psr-4": {
  54. "Tests\\": "tests/"
  55. }
  56. },
  57. "scripts": {
  58. "post-autoload-dump": [
  59. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  60. "@php artisan package:discover --ansi",
  61. "@php artisan filament:upgrade"
  62. ],
  63. "post-update-cmd": [
  64. "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
  65. "npm up && npm run build || echo \"Skipping npm update and build (npm not available)\""
  66. ],
  67. "post-root-package-install": [
  68. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  69. ],
  70. "post-create-project-cmd": [
  71. "@php artisan key:generate --ansi"
  72. ]
  73. },
  74. "extra": {
  75. "laravel": {
  76. "dont-discover": []
  77. }
  78. },
  79. "config": {
  80. "optimize-autoloader": true,
  81. "preferred-install": "dist",
  82. "sort-packages": true,
  83. "allow-plugins": {
  84. "pestphp/pest-plugin": true,
  85. "php-http/discovery": true
  86. }
  87. },
  88. "minimum-stability": "stable",
  89. "prefer-stable": true
  90. }