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.0 KiB

7 years ago
4 years ago
7 years ago
7 years ago
4 years ago
7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
7 years ago
6 years ago
7 years ago
6 years ago
6 years ago
7 years ago
6 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.5.*",
  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. "workerman/gateway-worker": "^3.0",
  18. "yansongda/pay": "^1.0"
  19. },
  20. "require-dev": {
  21. "fzaninotto/faker": "~1.4",
  22. "mockery/mockery": "0.9.*",
  23. "phpunit/phpunit": "~6.0"
  24. },
  25. "autoload": {
  26. "classmap": [
  27. "database"
  28. ],
  29. "psr-4": {
  30. "App\\": "app/"
  31. },
  32. "files": [
  33. "app/Common/function.php"
  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 clear-compiled"
  51. ],
  52. "post-update-cmd": [
  53. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  54. "php artisan clear-compiled"
  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. "optimize-autoloader": true
  65. },
  66. "repositories": {
  67. "packagist": {
  68. "type": "composer",
  69. "url": "https://mirrors.aliyun.com/composer/"
  70. }
  71. }
  72. }