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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.1",
  15. "andrewdwallo/filament-companies": "^3.0",
  16. "andrewdwallo/filament-selectify": "^2.0",
  17. "andrewdwallo/transmatic": "^1.0",
  18. "bezhansalleh/filament-panel-switch": "^1.0",
  19. "filament/filament": "^3.0",
  20. "filament/spatie-laravel-tags-plugin": "^3.0-stable",
  21. "guzzlehttp/guzzle": "^7.2",
  22. "laravel/framework": "^10.10",
  23. "laravel/sanctum": "^3.2",
  24. "laravel/tinker": "^2.8",
  25. "squirephp/model": "^3.4",
  26. "squirephp/repository": "^3.4",
  27. "symfony/intl": "^6.3"
  28. },
  29. "require-dev": {
  30. "fakerphp/faker": "^1.9.1",
  31. "laravel/pint": "^1.0",
  32. "laravel/sail": "^1.18",
  33. "mockery/mockery": "^1.4.4",
  34. "nunomaduro/collision": "^7.0",
  35. "phpunit/phpunit": "^10.1",
  36. "spatie/laravel-ignition": "^2.0"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "App\\": "app/",
  41. "Database\\Factories\\": "database/factories/",
  42. "Database\\Seeders\\": "database/seeders/"
  43. },
  44. "files": [
  45. "app/Helpers/format.php"
  46. ]
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "Tests\\": "tests/"
  51. }
  52. },
  53. "scripts": {
  54. "post-autoload-dump": [
  55. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  56. "@php artisan package:discover --ansi",
  57. "@php artisan filament:upgrade"
  58. ],
  59. "post-update-cmd": [
  60. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  61. ],
  62. "post-root-package-install": [
  63. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  64. ],
  65. "post-create-project-cmd": [
  66. "@php artisan key:generate --ansi"
  67. ]
  68. },
  69. "extra": {
  70. "laravel": {
  71. "dont-discover": []
  72. }
  73. },
  74. "config": {
  75. "optimize-autoloader": true,
  76. "preferred-install": "dist",
  77. "sort-packages": true,
  78. "allow-plugins": {
  79. "pestphp/pest-plugin": true,
  80. "php-http/discovery": true
  81. }
  82. },
  83. "minimum-stability": "stable",
  84. "prefer-stable": true
  85. }