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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. "codewithdennis/filament-simple-alert": "^3.0",
  21. "filament/filament": "^3.2",
  22. "guava/filament-clusters": "^1.1",
  23. "guzzlehttp/guzzle": "^7.8",
  24. "jaocero/radio-deck": "^1.2",
  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. "barryvdh/laravel-debugbar": "^3.15",
  34. "fakerphp/faker": "^1.23",
  35. "laravel/pint": "^1.13",
  36. "laravel/sail": "^1.26",
  37. "mockery/mockery": "^1.6",
  38. "nunomaduro/collision": "^8.0",
  39. "pestphp/pest": "^3.0",
  40. "pestphp/pest-plugin-livewire": "^3.0",
  41. "spatie/laravel-ignition": "^2.4",
  42. "spatie/laravel-ray": "^1.36"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "App\\": "app/",
  47. "Database\\Factories\\": "database/factories/",
  48. "Database\\Seeders\\": "database/seeders/"
  49. },
  50. "files": [
  51. "app/Helpers/format.php"
  52. ]
  53. },
  54. "autoload-dev": {
  55. "psr-4": {
  56. "Tests\\": "tests/"
  57. }
  58. },
  59. "scripts": {
  60. "post-autoload-dump": [
  61. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  62. "@php artisan package:discover --ansi",
  63. "@php artisan filament:upgrade"
  64. ],
  65. "post-update-cmd": [
  66. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  67. ],
  68. "post-root-package-install": [
  69. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  70. ],
  71. "post-create-project-cmd": [
  72. "@php artisan key:generate --ansi"
  73. ]
  74. },
  75. "extra": {
  76. "laravel": {
  77. "dont-discover": []
  78. }
  79. },
  80. "config": {
  81. "optimize-autoloader": true,
  82. "preferred-install": "dist",
  83. "sort-packages": true,
  84. "allow-plugins": {
  85. "pestphp/pest-plugin": true,
  86. "php-http/discovery": true
  87. }
  88. },
  89. "minimum-stability": "stable",
  90. "prefer-stable": true
  91. }