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.

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