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.

59 lines
1.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "php": ">=5.6.4",
  9. "intervention/image": "^2.3",
  10. "laravel/framework": "5.4.*",
  11. "laravel/tinker": "~1.0",
  12. "maatwebsite/excel": "~2.1.0",
  13. "overtrue/laravel-wechat": "~3.1",
  14. "simplesoftwareio/simple-qrcode": "~1",
  15. "jpush/jpush": "v3.5.*"
  16. },
  17. "require-dev": {
  18. "fzaninotto/faker": "~1.4",
  19. "mockery/mockery": "0.9.*",
  20. "phpunit/phpunit": "~5.7"
  21. },
  22. "autoload": {
  23. "classmap": [
  24. "database"
  25. ],
  26. "psr-4": {
  27. "App\\": "app/"
  28. },
  29. "files": [
  30. "app/Common/function.php"
  31. ]
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Tests\\": "tests/"
  36. }
  37. },
  38. "scripts": {
  39. "post-root-package-install": [
  40. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  41. ],
  42. "post-create-project-cmd": [
  43. "php artisan key:generate"
  44. ],
  45. "post-install-cmd": [
  46. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  47. "php artisan optimize"
  48. ],
  49. "post-update-cmd": [
  50. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  51. "php artisan optimize"
  52. ]
  53. },
  54. "config": {
  55. "preferred-install": "dist",
  56. "sort-packages": true,
  57. "optimize-autoloader": true
  58. }
  59. }