領収証発行サービス
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.

72 lines
2.0KB

  1. {
  2. "name": "laravel/laravel",
  3. "type": "project",
  4. "description": "The Laravel Framework.",
  5. "keywords": ["framework", "laravel"],
  6. "license": "MIT",
  7. "require": {
  8. "php": "^8.1",
  9. "barryvdh/laravel-snappy": "^1.0",
  10. "guzzlehttp/guzzle": "^7.2",
  11. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  12. "laravel/framework": "^10.0",
  13. "laravel/sanctum": "^3.2",
  14. "laravel/slack-notification-channel": "^3.0",
  15. "laravel/tinker": "^2.8"
  16. },
  17. "require-dev": {
  18. "barryvdh/laravel-ide-helper": "^2.13",
  19. "fakerphp/faker": "^1.9.1",
  20. "itsgoingd/clockwork": "^5.1",
  21. "laravel/pint": "^1.0",
  22. "laravel/sail": "^1.18",
  23. "mockery/mockery": "^1.4.4",
  24. "nunomaduro/collision": "^7.0",
  25. "phpunit/phpunit": "^10.0",
  26. "spatie/laravel-ignition": "^2.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "App\\": "app/",
  31. "Database\\Factories\\": "database/factories/",
  32. "Database\\Seeders\\": "database/seeders/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Tests\\": "tests/"
  38. }
  39. },
  40. "scripts": {
  41. "post-autoload-dump": [
  42. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  43. "@php artisan package:discover --ansi"
  44. ],
  45. "post-update-cmd": [
  46. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  47. ],
  48. "post-root-package-install": [
  49. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  50. ],
  51. "post-create-project-cmd": [
  52. "@php artisan key:generate --ansi"
  53. ]
  54. },
  55. "extra": {
  56. "laravel": {
  57. "dont-discover": []
  58. }
  59. },
  60. "config": {
  61. "optimize-autoloader": true,
  62. "preferred-install": "dist",
  63. "sort-packages": true,
  64. "allow-plugins": {
  65. "pestphp/pest-plugin": true,
  66. "php-http/discovery": true
  67. }
  68. },
  69. "minimum-stability": "stable",
  70. "prefer-stable": true
  71. }