composer.json 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": [
  5. "framework",
  6. "laravel"
  7. ],
  8. "license": "MIT",
  9. "type": "project",
  10. "require": {
  11. "php": ">=7.4.1",
  12. "aws/aws-sdk-php-laravel": "~3.0",
  13. "google/cloud-vision": "^1.3",
  14. "gregwar/captcha": "^1.1",
  15. "intervention/image": "^2.3",
  16. "laravel/framework": "5.5.*",
  17. "laravel/tinker": "~1.0",
  18. "league/flysystem-aws-s3-v3": "~1.0",
  19. "phpoffice/phpspreadsheet": "^1.17",
  20. "ext-bcmath": "*"
  21. },
  22. "require-dev": {
  23. "fzaninotto/faker": "~1.4",
  24. "mockery/mockery": "0.9.*",
  25. "phpunit/phpunit": "~6.0",
  26. "filp/whoops": "~2.0"
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "database"
  31. ],
  32. "psr-4": {
  33. "App\\": "app/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Tests\\": "tests/"
  39. }
  40. },
  41. "scripts": {
  42. "post-root-package-install": [
  43. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  44. ],
  45. "post-create-project-cmd": [
  46. "php artisan key:generate"
  47. ],
  48. "post-install-cmd": [
  49. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  50. "php artisan optimize"
  51. ],
  52. "post-update-cmd": [
  53. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  54. "php artisan optimize"
  55. ],
  56. "post-autoload-dump": [
  57. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  58. "@php artisan package:discover"
  59. ]
  60. },
  61. "config": {
  62. "preferred-install": "dist",
  63. "sort-packages": true,
  64. "allow-plugins": {
  65. "kylekatarnls/update-helper": true
  66. }
  67. }
  68. }